@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6c2bd9;
    --secondary: #00d4ff;
    --dark: #0a0a1a;
    --light: #f0f0ff;
    --accent: #ff006e;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a3e 100%);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(10, 10, 26, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    margin: 6px 0;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

main {
    padding-top: 80px;
}

.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    background: radial-gradient(ellipse at center, rgba(108, 43, 217, 0.2) 0%, transparent 70%);
}

.hero-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.game-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 50px rgba(108, 43, 217, 0.4);
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(108, 43, 217, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 43, 217, 0.2);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--light);
}

.page-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

footer {
    background: rgba(10, 10, 26, 0.98);
    padding: 3rem 2rem;
    border-top: 2px solid var(--primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal {
    background: linear-gradient(135deg, #1a1a3e, var(--dark));
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px rgba(108, 43, 217, 0.5);
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.age-modal p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.age-btn-no {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border: 2px solid var(--light);
}

.age-btn:hover {
    transform: scale(1.05);
}

.play-note {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        border-bottom: 1px solid rgba(108, 43, 217, 0.2);
    }

    nav a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .badges {
        flex-direction: column;
        align-items: center;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }
}
