* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #0f172a;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Age Check Modal */
.age-check-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.age-check-modal.show {
    display: flex;
}

.age-check-inner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 65px 55px;
    border-radius: 20px;
    text-align: center;
    max-width: 580px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid #10b981;
}

.age-check-icon {
    margin-bottom: 35px;
}

.age-check-inner h2 {
    font-size: 40px;
    color: #10b981;
    margin-bottom: 25px;
}

.age-check-desc {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.age-check-info {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.age-check-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-yes,
.btn-no {
    padding: 18px 45px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #10b981;
    color: #0f172a;
}

.btn-yes:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-no {
    background: #475569;
    color: #e2e8f0;
}

.btn-no:hover {
    background: #334155;
}

/* Header */
.header {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #10b981;
}

.navigation {
    display: flex;
    gap: 38px;
}

.navigation a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #10b981;
}

.nav-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    width: 30px;
    height: 4px;
    background: #10b981;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
    padding: 130px 35px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    color: #10b981;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 28px;
    color: #e2e8f0;
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.stat {
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    padding: 14px 30px;
    border-radius: 25px;
    color: #10b981;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.hero-cta {
    display: inline-block;
    background: #10b981;
    color: #0f172a;
    padding: 22px 55px;
    font-size: 21px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.hero-cta:hover {
    background: #059669;
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
}

/* About */
.about {
    padding: 110px 35px;
    background: #1e293b;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head h2 {
    font-size: 52px;
    color: #10b981;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
}

.info-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 50px 40px;
    border-radius: 18px;
    border: 2px solid #334155;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-emoji {
    font-size: 50px;
}

.info-card h3 {
    font-size: 28px;
    color: #10b981;
}

.info-card p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    padding: 110px 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.game-intro {
    text-align: center;
    margin-bottom: 70px;
}

.game-intro h2 {
    font-size: 52px;
    color: #0f172a;
    margin-bottom: 25px;
}

.game-intro p {
    font-size: 22px;
    color: #1e293b;
}

.game-frame-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 4px solid #6b21a8;
}

.game-frame {
    width: 100%;
    height: 720px;
    border: none;
    display: block;
}

/* Disclosures */
.disclosures {
    padding: 110px 35px;
    background: #1e293b;
}

.disclosure-box {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e3a1e 0%, #0f1f0f 100%);
    padding: 70px 60px;
    border-radius: 20px;
    border: 3px solid #10b981;
}

.disclosure-box h2 {
    font-size: 46px;
    color: #10b981;
    margin-bottom: 60px;
    text-align: center;
}

.disclosure-items {
    display: grid;
    gap: 50px;
}

.disclosure-item h3 {
    font-size: 28px;
    color: #10b981;
    margin-bottom: 18px;
}

.disclosure-item p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Advantages */
.advantages {
    padding: 110px 35px;
    background: #0f172a;
}

.advantages h2 {
    font-size: 52px;
    color: #10b981;
    text-align: center;
    margin-bottom: 80px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
    max-width: 1300px;
    margin: 0 auto;
}

.advantage {
    background: #1e293b;
    padding: 45px 40px;
    border-radius: 18px;
    border-left: 5px solid #10b981;
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.advantage-num {
    display: block;
    font-size: 50px;
    font-weight: 900;
    color: #10b981;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.advantage h4 {
    font-size: 26px;
    color: #10b981;
    margin-bottom: 15px;
}

.advantage p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 110px 35px;
    background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
    text-align: center;
}

.cta-box h2 {
    font-size: 52px;
    color: #10b981;
    margin-bottom: 30px;
}

.cta-box p {
    font-size: 24px;
    color: #e2e8f0;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    background: #10b981;
    color: #0f172a;
    padding: 24px 60px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    background: #059669;
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
    padding: 90px 35px;
    text-align: center;
}

.play-header h1 {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 20px;
}

.play-tagline {
    font-size: 24px;
    color: #e2e8f0;
}

.play-guide {
    padding: 80px 35px;
    background: #1e293b;
}

.guide-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #0f172a;
    padding: 60px;
    border-radius: 20px;
    border-left: 6px solid #10b981;
}

.guide-box h2 {
    font-size: 38px;
    color: #10b981;
    margin-bottom: 40px;
}

.guide-items {
    display: grid;
    gap: 35px;
}

.guide-item strong {
    font-size: 22px;
    color: #10b981;
    display: block;
    margin-bottom: 12px;
}

.guide-item p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.8;
}

.play-game {
    padding: 80px 35px 100px;
    background: #1e293b;
}

.play-frame-box {
    max-width: 1400px;
    margin: 0 auto 50px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 4px solid #6b21a8;
}

.play-frame {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.play-notice {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e3a1e 0%, #0f1f0f 100%);
    padding: 35px;
    border-radius: 18px;
    border: 3px solid #10b981;
    text-align: center;
}

.play-notice p {
    font-size: 18px;
    color: #10b981;
}

/* Legal Pages */
.legal-banner {
    background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
    padding: 90px 35px;
    text-align: center;
}

.legal-banner h1 {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 20px;
}

.legal-banner p {
    font-size: 24px;
    color: #e2e8f0;
}

.legal-section {
    padding: 90px 35px;
    background: #1e293b;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-doc h2 {
    font-size: 36px;
    color: #10b981;
    margin-top: 55px;
    margin-bottom: 25px;
}

.legal-doc h2:first-child {
    margin-top: 0;
}

.legal-doc p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.8;
}

.legal-doc ul {
    margin-bottom: 30px;
    padding-left: 35px;
}

.legal-doc li {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.8;
}

.alert-box {
    background: linear-gradient(135deg, #1e3a1e 0%, #0f1f0f 100%);
    border: 4px solid #10b981;
    padding: 50px;
    border-radius: 18px;
    margin-bottom: 60px;
}

.alert-box h2 {
    color: #10b981;
    margin-top: 0;
}

.summary-box {
    background: #6b21a8;
    padding: 50px;
    border-radius: 18px;
    margin-top: 60px;
    text-align: center;
}

.summary-box h3 {
    color: #10b981;
    margin-bottom: 25px;
}

.summary-box p {
    color: #e2e8f0;
}

.legal-meta {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 4px solid #334155;
    color: #94a3b8;
}

.legal-meta p {
    margin-bottom: 12px;
    font-size: 17px;
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 70px 35px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 20px;
}

.footer-about {
    color: #94a3b8;
    font-size: 17px;
}

.footer-col h4 {
    color: #10b981;
    font-size: 22px;
    margin-bottom: 25px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #10b981;
}

.footer-copy {
    color: #94a3b8;
    font-size: 17px;
    margin-bottom: 12px;
}

.footer-notice {
    color: #10b981;
    font-weight: 800;
    font-size: 17px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: rgba(30, 41, 59, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .navigation.active {
        left: 0;
    }

    .nav-burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .hero-content h1,
    .play-header h1,
    .legal-banner h1 {
        font-size: 44px;
    }

    .section-head h2,
    .game-intro h2,
    .advantages h2,
    .cta-box h2 {
        font-size: 38px;
    }

    .game-frame,
    .play-frame {
        height: 500px;
    }

    .cards-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .disclosure-box {
        padding: 40px 30px;
    }
}
