@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Rajdhani:wght@400;500;600&display=swap');

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --deep-black: #050510;
    --panel-bg: #0a0a1f;
    --text-light: #e0e0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--deep-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.top-bar {
    background: linear-gradient(90deg, var(--panel-bg) 0%, #12122f 50%, var(--panel-bg) 100%);
    border-bottom: 1px solid var(--neon-cyan);
    padding: 0.8rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.top-bar-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.main-wrapper {
    padding-top: 70px;
}

.hero-banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        var(--deep-black);
    padding: 3rem 2rem;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    pointer-events: none;
}

.hero-box {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.hero-box h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

.hero-box .tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.alert-item {
    background: rgba(10, 10, 31, 0.8);
    border: 1px solid var(--neon-pink);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.alert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.alert-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.alert-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.game-zone {
    background: var(--panel-bg);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.zone-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2rem;
    color: var(--neon-yellow);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-frame-container {
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    padding: 4px;
    border-radius: 0;
}

.game-frame-container iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
    background: #000;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-block {
    flex: 1 1 300px;
    background: var(--panel-bg);
    border-left: 3px solid var(--neon-cyan);
    padding: 2rem;
}

.info-block h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--deep-black), var(--panel-bg));
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bottom-bar {
    background: var(--panel-bg);
    border-top: 1px solid var(--neon-pink);
    padding: 2.5rem 2rem;
}

.bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bottom-content h5 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.resource-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.resource-links a:hover {
    color: var(--neon-pink);
}

.copy-text {
    color: rgba(224, 224, 255, 0.5);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 16, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-popup {
    background: var(--panel-bg);
    border: 2px solid var(--neon-cyan);
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.age-popup h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.age-popup p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cyber-btn {
    font-family: 'Orbitron', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cyber-btn.accept {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    color: var(--deep-black);
}

.cyber-btn.reject {
    background: transparent;
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.cyber-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hidden {
    display: none !important;
}

.page-title-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--panel-bg), var(--deep-black));
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
}

.page-title-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-cyan);
}

.text-section {
    padding: 3rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.text-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    margin: 2.5rem 0 1rem;
    font-size: 1.4rem;
}

.text-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.text-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-section li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.usage-note {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid var(--neon-cyan);
    padding: 1.5rem;
    max-width: 1300px;
    margin: 0 auto 2rem;
}

.usage-note h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--panel-bg);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid var(--neon-cyan);
    }

    .nav-links.show {
        display: flex;
    }

    .hero-box h1 {
        font-size: 2.2rem;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .game-frame-container iframe {
        height: 400px;
    }

    .age-actions {
        flex-direction: column;
    }

    .zone-title {
        font-size: 1.5rem;
    }
}
