* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan-bright: #06b6d4;
    --teal-dark: #0e7490;
    --purple-cosmic: #7c3aed;
    --bg-space: #0a0e27;
    --bg-nebula: #1a1f3a;
    --text-white: #f0f9ff;
    --text-muted: #bae6fd;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: radial-gradient(circle at 30% 20%, #1a1f3a 0%, #0a0e27 50%, #000000 100%);
    color: var(--text-white);
    line-height: 1.7;
    min-height: 100vh;
}

.content-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(145deg, var(--bg-nebula), var(--bg-space));
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 550px;
    width: 92%;
    text-align: center;
    border: 3px solid var(--cyan-bright);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.6);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.age-gate-box p {
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 600;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn {
    padding: 18px 45px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn.confirm {
    background: linear-gradient(135deg, var(--cyan-bright), var(--teal-dark));
    color: white;
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
}

.age-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(6, 182, 212, 0.7);
}

.age-btn.deny {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.age-btn.deny:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Header */
.main-header {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--cyan-bright);
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.4);
}

.header-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.brand-icon {
    font-size: 2.2rem;
}

.brand-name {
    background: linear-gradient(135deg, var(--cyan-bright), var(--purple-cosmic));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--cyan-bright);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan-bright);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 32px;
    height: 3px;
    background: var(--cyan-bright);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Main Content */
.main-content {
    padding-top: 40px;
}

/* Intro Section */
.intro-section {
    padding: 90px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.08) 0%, transparent 65%);
}

.intro-section h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--cyan-bright), var(--purple-cosmic));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-weight: 600;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.warning-item {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.08), rgba(124, 58, 237, 0.08));
    padding: 40px 30px;
    border-radius: 18px;
    border: 2px solid rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
}

.warning-item:hover {
    transform: translateY(-8px);
    border-color: var(--cyan-bright);
    box-shadow: 0 12px 45px rgba(6, 182, 212, 0.35);
}

.warning-symbol {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.warning-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.warning-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 90px 0;
    background: rgba(26, 31, 58, 0.4);
}

.story-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.story-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.story-col p {
    font-size: 1.12rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Featured Game */
.featured-game {
    padding: 90px 0;
}

.featured-game h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.game-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 45px;
}

.game-embed {
    max-width: 1050px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid var(--cyan-bright);
    box-shadow: 0 12px 55px rgba(6, 182, 212, 0.45);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.action-link {
    display: inline-block;
    margin: 40px auto 0;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--cyan-bright), var(--teal-dark));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
    font-size: 1rem;
}

.action-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(6, 182, 212, 0.6);
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0;
    background: rgba(26, 31, 58, 0.4);
}

.benefits-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.05), rgba(124, 58, 237, 0.05));
    padding: 45px 35px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan-bright);
    box-shadow: 0 12px 45px rgba(6, 182, 212, 0.3);
}

.benefit-emoji {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Disclaimer Banner */
.disclaimer-banner {
    padding: 65px 0;
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1), rgba(124, 58, 237, 0.1));
}

.banner-inner {
    text-align: center;
    padding: 45px 40px;
    background: rgba(10, 14, 39, 0.6);
    border-radius: 20px;
    border: 2px solid var(--cyan-bright);
}

.banner-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.banner-inner p {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 950px;
    margin: 0 auto;
}

/* Play Page */
.play-intro {
    padding: 70px 0 45px;
    text-align: center;
}

.play-intro h1 {
    font-size: 3.4rem;
    margin-bottom: 20px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.play-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.game-display {
    padding: 45px 0;
}

.game-container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    border-radius: 25px;
    overflow: hidden;
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: 4px solid var(--cyan-bright);
    border-radius: 25px;
    box-shadow: 0 12px 55px rgba(6, 182, 212, 0.45);
}

.game-details {
    padding: 90px 0;
    background: rgba(26, 31, 58, 0.4);
}

.game-details h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.detail-box {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.05), rgba(124, 58, 237, 0.05));
    padding: 35px 30px;
    border-radius: 18px;
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.detail-box h3 {
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.detail-box p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.back-cta {
    padding: 70px 0;
}

.cta-inner {
    text-align: center;
    padding: 55px 45px;
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    border: 2px solid var(--cyan-bright);
}

.cta-inner h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Legal Pages */
.legal-header {
    padding: 70px 0 40px;
    text-align: center;
}

.legal-header h1 {
    font-size: 3.4rem;
    margin-bottom: 15px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.legal-date {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.legal-body {
    padding: 50px 0 90px;
}

.legal-article {
    margin-bottom: 55px;
    background: rgba(26, 31, 58, 0.4);
    padding: 45px 40px;
    border-radius: 18px;
    border-left: 5px solid var(--cyan-bright);
}

.legal-article h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.legal-article p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.08rem;
}

/* Footer */
.site-footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 70px 0 35px;
    border-top: 3px solid var(--cyan-bright);
    margin-top: 90px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-block h4 {
    font-size: 1.4rem;
    margin-bottom: 22px;
    color: var(--cyan-bright);
    font-weight: 700;
}

.footer-block p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-resources,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-resources a,
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-resources a:hover,
.footer-legal a:hover {
    color: var(--cyan-bright);
}

.footer-base {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 35px 0;
        border-top: 3px solid var(--cyan-bright);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
        gap: 25px;
    }

    .main-nav.active {
        left: 0;
    }

    .intro-section h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .warning-grid {
        grid-template-columns: 1fr;
    }

    .story-columns {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-full {
        height: 550px;
    }

    .benefits-layout,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-box {
        padding: 40px 30px;
    }

    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .age-btn {
        width: 100%;
    }
}
