This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="el"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> | |
| <title>Escape Room - Level 1 (Zoomed Out)</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; user-select: none; } | |
| body { background: radial-gradient(circle at 20% 30%, #0a0f1e, #010101); min-height: 100vh; display: flex; justify-content: center; align-items: center; font-family: 'Courier New', monospace; padding: 20px; } | |
| .game-container { max-width: 1400px; width: 100%; background: rgba(8,12,20,0.9); backdrop-filter: blur(4px); border-radius: 2rem; border: 1px solid #00ff9d; padding: 1rem; } |