* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    background-color: #0d0d12;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0; min-height: 100vh;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* === НАВИГАЦИЯ ПК === */
nav {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px;
    display: flex; justify-content: center; gap: 40px;
    background: rgba(13, 13, 18, 0.8); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav a {
    color: rgba(255, 255, 255, 0.6); text-decoration: none;
    text-transform: uppercase; font-weight: bold; letter-spacing: 2px;
    font-size: 0.9rem; transition: 0.3s;
}
nav a:hover, nav a.active { color: #ffffff; text-shadow: 0 0 10px #00d2ff; }
nav a.active { border-bottom: 2px solid #00d2ff; padding-bottom: 5px; }

/* === КОНТЕНТ === */
#page-wrapper { width: 100%; display: flex; justify-content: center; padding-top: 100px; }
.container { width: 100%; max-width: 1200px; padding: 40px 20px; text-align: center; }

h1 {
    font-size: 3.5rem; text-transform: uppercase; letter-spacing: 8px;
    text-shadow: 0 0 20px #00d2ff, 0 0 40px #00d2ff; margin-bottom: 20px; color: #ffffff;
}

.dev-box {
    background: rgba(255, 255, 255, 0.02); border: 1px dashed rgba(0, 210, 255, 0.3);
    border-radius: 20px; padding: 100px 40px; margin-top: 40px;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.dev-box p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.5); max-width: 600px; line-height: 1.6; margin: 0; }

.neon-status {
    display: inline-block; padding: 8px 20px; border-radius: 20px;
    background: rgba(0, 210, 255, 0.1); color: #00d2ff; font-weight: bold;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem;
    border: 1px solid #00d2ff; box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    margin-bottom: 20px;
}