* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e1a;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.topnav {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #00d9ff;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d9ff;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 26px;
    height: 3px;
    background: #00d9ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

main {
    padding: 0;
}

.hero-space {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.hero-space h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 25px;
}

.subtitle {
    font-size: 22px;
    color: #b0b0b0;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #888;
    font-weight: 600;
}

.mission-critical {
    padding: 90px 0;
}

.mission-critical h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #00d9ff;
    text-align: center;
    margin-bottom: 60px;
}

.briefing-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.panel {
    background: rgba(26, 35, 50, 0.6);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.panel:hover {
    transform: translateY(-5px);
    border-color: #00d9ff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.panel-blue {
    border-left: 4px solid #00d9ff;
}

.panel-cyan {
    border-left: 4px solid #00ffb3;
}

.panel-purple {
    border-left: 4px solid #9b59ff;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.panel-icon {
    font-size: 36px;
}

.panel h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.panel p {
    line-height: 1.8;
    color: #b0b0b0;
}

.game-station {
    padding: 90px 0;
    background: rgba(26, 35, 50, 0.3);
}

.game-station h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #00d9ff;
    text-align: center;
    margin-bottom: 20px;
}

.station-info {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-bottom: 50px;
}

.game-display {
    max-width: 1200px;
    margin: 0 auto 35px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.15);
}

.game-display iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-specs {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.spec {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #b0b0b0;
}

.about-mission {
    padding: 90px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.content-block {
    background: rgba(26, 35, 50, 0.5);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.content-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #00ffb3;
    margin-bottom: 20px;
}

.content-block p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #b0b0b0;
}

.play-header {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    padding: 80px 0;
    text-align: center;
}

.play-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 18px;
}

.play-subtitle {
    font-size: 20px;
    color: #b0b0b0;
}

.play-main {
    padding: 80px 0;
}

.game-viewport {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.15);
}

.game-viewport iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-docs {
    padding: 80px 0;
    background: rgba(26, 35, 50, 0.3);
}

.play-docs h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #00d9ff;
    text-align: center;
    margin-bottom: 50px;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.doc-card {
    background: rgba(26, 35, 50, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.doc-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 15px;
}

.doc-card p {
    line-height: 1.8;
    color: #b0b0b0;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 50px;
}

.legal-content {
    max-width: 950px;
    background: rgba(26, 35, 50, 0.5);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #00ffb3;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: #c0c0c0;
}

.site-footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding: 70px 0 25px;
    margin-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 18px;
}

.footer-block p {
    line-height: 1.8;
    color: #888;
}

.support-links {
    list-style: none;
    margin-top: 15px;
}

.support-links li {
    margin: 10px 0;
}

.support-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: #00d9ff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d9ff;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: #666;
}

.age-verify {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verify.hidden {
    display: none;
}

.verify-card {
    background: linear-gradient(135deg, #0a0e1a, #1a2332);
    padding: 55px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    border: 2px solid #00d9ff;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

.verify-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.verify-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 25px;
}

.verify-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #c0c0c0;
}

.verify-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.verify-buttons button {
    flex: 1;
    font-family: 'Space Grotesk', sans-serif;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #00d9ff;
    color: #0a0e1a;
}

.btn-confirm:hover {
    background: #00ffb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.btn-cancel {
    background: #333;
    color: #888;
}

.btn-cancel:hover {
    background: #444;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(0, 217, 255, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    }
    
    .hero-space h1 {
        font-size: 38px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .stat-cards {
        gap: 35px;
    }
    
    .briefing-panels,
    .mission-content,
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .game-display iframe,
    .game-viewport iframe {
        height: 500px;
    }
    
    .verify-card {
        padding: 40px;
    }
    
    .verify-card h2 {
        font-size: 26px;
    }
    
    .verify-buttons {
        flex-direction: column;
    }
    
    .legal-content {
        padding: 35px;
    }
}
