@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --orbit-blue: #0B1426;
    --crypt-silver: #E0E5EC;
    --accent-cyan: #4ECDC4;
    --deep-navy: #061220;
    --glow-blue: #00B4D8;
    --soft-gray: #8892A0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--orbit-blue);
    color: var(--crypt-silver);
    line-height: 1.75;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.top-header {
    background: var(--deep-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.header-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-area svg {
    width: 48px;
    height: 48px;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-bar a {
    color: var(--soft-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-bar a:hover {
    color: var(--accent-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-cyan);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.orbital-hero {
    min-height: 88vh;
    background: radial-gradient(ellipse at center, var(--orbit-blue) 0%, var(--deep-navy) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.orbital-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit 30s linear infinite;
}

.orbital-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit 20s linear infinite reverse;
}

@keyframes orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    max-width: 1700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content .age-label {
    display: inline-block;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--crypt-silver);
}

.hero-content h1 span {
    color: var(--accent-cyan);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--soft-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.orbit-btn {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--deep-navy);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.3);
}

.orbit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(78, 205, 196, 0.5);
}

.info-row {
    background: var(--deep-navy);
    padding: 5rem 2rem;
}

.info-row-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-tile {
    background: var(--orbit-blue);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.15);
    transition: all 0.3s ease;
}

.info-tile:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.info-tile .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-tile h3 {
    color: var(--crypt-silver);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-tile p {
    color: var(--soft-gray);
    font-size: 0.95rem;
}

.game-area {
    background: var(--orbit-blue);
    padding: 5rem 2rem;
}

.game-area-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-size: 2.5rem;
    color: var(--crypt-silver);
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto;
}

.game-panel {
    background: var(--deep-navy);
    border-radius: 25px;
    padding: 1.5rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-panel iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 15px;
}

.specs-area {
    background: var(--deep-navy);
    padding: 5rem 2rem;
}

.specs-inner {
    max-width: 1700px;
    margin: 0 auto;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.spec-card {
    background: var(--orbit-blue);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--accent-cyan);
}

.spec-card .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.spec-card h4 {
    color: var(--crypt-silver);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.spec-card p {
    color: var(--soft-gray);
    font-size: 0.85rem;
}

footer {
    background: var(--deep-navy);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
}

.footer-grid {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: var(--soft-gray);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
}

.footer-bottom p {
    color: var(--soft-gray);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 32, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-gate.hidden {
    display: none;
}

.age-gate-panel {
    background: var(--orbit-blue);
    border: 2px solid var(--accent-cyan);
    border-radius: 25px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
}

.age-gate-panel h2 {
    color: var(--crypt-silver);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.age-gate-panel p {
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-buttons button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-allow {
    background: var(--accent-cyan);
    border: none;
    color: var(--deep-navy);
}

.btn-allow:hover {
    box-shadow: 0 0 25px rgba(78, 205, 196, 0.5);
}

.btn-deny {
    background: transparent;
    border: 2px solid var(--soft-gray);
    color: var(--soft-gray);
}

.btn-deny:hover {
    border-color: var(--crypt-silver);
    color: var(--crypt-silver);
}

.content-page {
    padding: 5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    color: var(--crypt-silver);
    text-align: center;
    margin-bottom: 3rem;
}

.content-page h2 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
}

.content-page p {
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.content-page ul {
    color: var(--soft-gray);
    margin: 1rem 0 1.5rem 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.play-section {
    padding: 3rem 2rem 5rem;
    background: var(--orbit-blue);
}

.play-section h1 {
    text-align: center;
    color: var(--crypt-silver);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.play-section > p {
    text-align: center;
    color: var(--soft-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (max-width: 1024px) {
    .info-row-inner {
        grid-template-columns: 1fr;
    }

    .specs-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--deep-navy);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(78, 205, 196, 0.2);
    }

    .nav-bar.active {
        transform: translateY(0);
    }

    .nav-bar ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .game-panel iframe {
        height: 400px;
    }

    .specs-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
