* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2d3748;
    line-height: 1.7;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.age-gate.verified {
    display: none;
}

.age-gate-box {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.3);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.age-gate-box h2 {
    font-size: 2.2rem;
    color: #7c3aed;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #4a5568;
}

.age-notice {
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    color: #7c3aed;
}

.age-gate-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    justify-content: center;
}

.btn-confirm,
.btn-decline {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #7c3aed;
    color: white;
}

.btn-confirm:hover {
    background: #6d28d9;
    transform: scale(1.05);
}

.btn-decline {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-decline:hover {
    background: #cbd5e0;
}

.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7c3aed;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: #7c3aed;
    transition: 0.3s;
    border-radius: 2px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #7c3aed;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width 0.3s ease;
}

.main-nav a:hover::before {
    width: 100%;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .main-nav.open {
        left: 0;
    }

    .main-nav a {
        padding: 18px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
    }
}

.hero-banner {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #7c3aed;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 20px;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .feature-pill {
        font-size: 0.9rem;
    }
}

.container {
    max-width: 100%;
    padding: 80px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #7c3aed, #a78bfa);
    margin: 0 auto;
    border-radius: 2px;
}

.about-section {
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.9;
}

.key-points {
    background: #f7fafc;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.point-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.point-box:hover {
    transform: translateY(-8px);
}

.point-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.point-box h3 {
    font-size: 1.6rem;
    color: #7c3aed;
    margin-bottom: 15px;
    font-weight: 700;
}

.point-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.game-showcase {
    background: white;
}

.game-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-hints {
    text-align: center;
    margin-top: 30px;
}

.game-hints p {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #7c3aed;
    font-weight: 600;
}

@media (max-width: 768px) {
    .game-iframe {
        height: 500px;
    }
}

.benefits-section {
    background: #f7fafc;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.cta-banner {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #7c3aed;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: #2d3748;
    color: #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #a78bfa;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #a78bfa;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .points-grid,
    .benefits-layout {
        grid-template-columns: 1fr;
    }
}
