@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --space-black: #0a0e27;
    --cosmic-blue: #1e3a8a;
    --neon-green: #10b981;
    --electric-blue: #06b6d4;
    --star-white: #f8fafc;
    --galaxy-purple: #7c3aed;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, #0a0e27 0%, #1e293b 50%, #0f172a 100%);
    color: var(--star-white);
    line-height: 1.6;
    min-height: 100vh;
    background-attachment: fixed;
}

.top-bar {
    background: rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu div {
    width: 28px;
    height: 3px;
    background: var(--electric-blue);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.main-nav a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: var(--star-white);
    text-decoration: none;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-nav a:hover {
    border-color: var(--neon-green);
    background: rgba(16, 185, 129, 0.1);
    color: var(--neon-green);
    transform: translateY(-2px);
}

.page-content {
    padding: 5rem 0;
}

.intro-section {
    text-align: center;
    padding: 6rem 3rem;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 30px;
    margin-bottom: 5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '★';
    position: absolute;
    font-size: 200px;
    color: rgba(16, 185, 129, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    position: relative;
    z-index: 1;
}

.page-tagline {
    font-size: 1.6rem;
    color: var(--electric-blue);
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.section-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--electric-blue);
    text-align: center;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(10, 14, 39, 0.8) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.feature-card:hover::before {
    transform: rotate(45deg);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--electric-blue);
    position: relative;
    z-index: 1;
}

.feature-card p {
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.text-section {
    background: rgba(30, 58, 138, 0.2);
    padding: 4rem;
    border-radius: 25px;
    margin: 3rem 0;
    border-left: 5px solid var(--neon-green);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.text-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--neon-green);
}

.text-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.text-section ul {
    margin: 2rem 0 2rem 2.5rem;
}

.text-section li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.text-section strong {
    color: var(--electric-blue);
}

.game-section {
    background: rgba(10, 14, 39, 0.8);
    padding: 4rem;
    border-radius: 30px;
    margin: 5rem 0;
    border: 3px solid var(--electric-blue);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.game-player {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.bottom-section {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
    padding: 5rem 0 3rem;
    margin-top: 6rem;
    border-top: 2px solid var(--neon-green);
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--electric-blue);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.resource-links a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-links a:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.gate-box {
    background: linear-gradient(135deg, var(--cosmic-blue) 0%, var(--space-black) 100%);
    padding: 4rem 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
}

.gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--neon-green);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

.gate-box p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.gate-btn {
    padding: 1.3rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--electric-blue) 100%);
    color: var(--space-black);
}

.btn-accept:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.6);
}

.btn-reject {
    background: transparent;
    color: var(--star-white);
    border: 2px solid rgba(248, 250, 252, 0.3);
}

.btn-reject:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: rgba(248, 250, 252, 0.5);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--space-black);
        transition: right 0.3s ease;
        padding-top: 5rem;
        border-left: 2px solid var(--neon-green);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    }

    .main-nav a {
        display: block;
        padding: 1.5rem 2rem;
        border-radius: 0;
        border: none;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-tagline {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .game-player {
        height: 600px;
    }

    .text-section {
        padding: 2.5rem;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }
}
