* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #7c2d12 0%, #9a3412 25%, #ea580c 75%, #fb923c 100%);
    color: #fef3c7;
    line-height: 1.75;
    min-height: 100vh;
}

.content-box {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 45, 18, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal.hidden {
    display: none;
}

.modal-box {
    background: linear-gradient(135deg, #9a3412 0%, #ea580c 100%);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 560px;
    border: 4px solid #fbbf24;
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.5);
}

.modal-symbol {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.modal-box h2 {
    font-family: 'Raleway', sans-serif;
    color: #fef3c7;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

.modal-box p {
    color: #fef3c7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal-info {
    font-size: 0.95rem;
    color: #fde68a;
    font-style: italic;
}

.modal-buttons {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.15rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
}

.modal-btn.confirm {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #7c2d12;
}

.modal-btn.confirm:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
}

.modal-btn.reject {
    background: transparent;
    color: #fef3c7;
    border: 3px solid #dc2626;
}

.modal-btn.reject:hover {
    background: #dc2626;
}

/* Header */
.header-bar {
    background: rgba(124, 45, 18, 0.95);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 2px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-burger span {
    display: block;
    width: 32px;
    height: 4px;
    background: #fbbf24;
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    color: #fef3c7;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.header-nav a:hover {
    color: #fbbf24;
}

/* Splash Zone */
.splash-zone {
    position: relative;
    padding: 7rem 2rem;
    text-align: center;
    overflow: hidden;
}

.splash-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
}

.content-box h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 4.25rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
    position: relative;
    z-index: 1;
}

.splash-tagline {
    font-size: 1.75rem;
    color: #fde68a;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.splash-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.splash-badge {
    background: rgba(124, 45, 18, 0.7);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #fbbf24;
}

/* Intro Area */
.intro-area {
    padding: 5rem 2rem;
    background: rgba(124, 45, 18, 0.5);
}

.intro-area h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.intro-blocks p {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    text-align: center;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlight Section */
.highlight-section {
    padding: 5rem 2rem;
}

.highlight-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.8) 0%, rgba(154, 52, 18, 0.8) 100%);
    padding: 2.75rem;
    border-radius: 18px;
    border: 3px solid #fbbf24;
    text-align: center;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-8px);
}

.card-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    font-weight: 800;
}

.highlight-card p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Game Feature */
.game-feature {
    padding: 5rem 2rem;
    background: rgba(124, 45, 18, 0.5);
}

.game-feature h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.game-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.game-embed-container {
    max-width: 1150px;
    margin: 0 auto;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid #fbbf24;
    box-shadow: 0 12px 50px rgba(251, 191, 36, 0.4);
}

.game-frame-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

/* Perks Display */
.perks-display {
    padding: 5rem 2rem;
}

.perks-display h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.perk-box {
    text-align: center;
    padding: 2.25rem;
}

.perk-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.perk-box h3 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.perk-box p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Mission Statement */
.mission-statement {
    padding: 5rem 2rem;
    background: rgba(124, 45, 18, 0.5);
}

.mission-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.8) 0%, rgba(154, 52, 18, 0.8) 100%);
    padding: 3.5rem;
    border-radius: 18px;
    border: 3px solid #fbbf24;
}

.mission-panel h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2.25rem;
    font-weight: 900;
}

.mission-panel p {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    text-align: center;
    line-height: 1.9;
}

/* Clarity Zone */
.clarity-zone {
    padding: 5rem 2rem;
}

.clarity-zone h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.clarity-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1050px;
    margin: 0 auto;
}

.clarity-col {
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.8) 0%, rgba(154, 52, 18, 0.8) 100%);
    padding: 2.75rem;
    border-radius: 18px;
    border: 3px solid #fbbf24;
}

.clarity-col h3 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
}

.clarity-col ul {
    list-style: none;
}

.clarity-col li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.05rem;
}

.clarity-col li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Numbers Showcase */
.numbers-showcase {
    padding: 4.5rem 2rem;
    background: rgba(124, 45, 18, 0.5);
}

.numbers-flex {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.number-block {
    text-align: center;
}

.big-number {
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    color: #fbbf24;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.number-text {
    font-size: 1.2rem;
    color: #fde68a;
    font-weight: 600;
}

/* Play Page */
.play-splash {
    padding: 4.5rem 2rem;
    text-align: center;
    background: rgba(124, 45, 18, 0.5);
}

.play-splash h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.75rem;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

.play-guide {
    padding: 3.75rem 2rem;
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.8) 0%, rgba(154, 52, 18, 0.8) 100%);
    padding: 2.75rem;
    border-radius: 18px;
    border: 3px solid #fbbf24;
}

.guide-container h2 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.75rem;
    font-weight: 800;
}

.guide-checklist {
    list-style: none;
    margin: 1.75rem 0;
}

.guide-checklist li {
    padding: 0.85rem 0;
    font-size: 1.1rem;
}

.guide-reminder {
    background: rgba(234, 88, 12, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #fbbf24;
    margin-top: 1.75rem;
}

.primary-game-section {
    padding: 2.75rem 2rem 5rem;
}

.game-holder {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid #fbbf24;
    box-shadow: 0 12px 50px rgba(251, 191, 36, 0.4);
}

.full-game-embed {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.enjoy-section {
    padding: 3.5rem 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.enjoy-section h2 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

/* Legal Pages */
.legal-splash {
    padding: 4.5rem 2rem;
    text-align: center;
    background: rgba(124, 45, 18, 0.5);
}

.legal-splash h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.75rem;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

.legal-date {
    color: #fde68a;
    font-size: 1.1rem;
}

.legal-section {
    padding: 4.5rem 2rem;
}

.legal-text-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.8) 0%, rgba(154, 52, 18, 0.8) 100%);
    padding: 3.5rem;
    border-radius: 18px;
    border: 3px solid #fbbf24;
}

.legal-text-box h2 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    font-size: 2rem;
    margin-top: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.legal-text-box p {
    margin-bottom: 1.75rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

/* Footer */
.footer-area {
    background: linear-gradient(135deg, #7c2d12 0%, #9a3412 100%);
    padding: 4.5rem 2rem 2.75rem;
    border-top: 4px solid #fbbf24;
    margin-top: 5rem;
}

.footer-content-box {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.75rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #fde68a;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-copyright {
    color: #fde68a;
    font-size: 0.95rem;
    margin-top: 1.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 290px;
        height: calc(100vh - 80px);
        background: rgba(124, 45, 18, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        gap: 1.75rem;
    }

    .header-nav.active {
        right: 0;
    }

    .content-box h1, .play-splash h1, .legal-splash h1 {
        font-size: 3rem;
    }

    .game-frame-embed {
        height: 450px;
    }

    .full-game-embed {
        height: 550px;
    }

    .highlight-cards, .perks-grid {
        grid-template-columns: 1fr;
    }

    .clarity-columns {
        grid-template-columns: 1fr;
    }

    .numbers-flex {
        gap: 2.75rem;
    }
}

@media (max-width: 480px) {
    .content-box h1, .play-splash h1, .legal-splash h1 {
        font-size: 2.5rem;
    }

    .modal-box {
        padding: 2.75rem 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .game-frame-embed {
        height: 350px;
    }

    .full-game-embed {
        height: 450px;
    }

    .legal-text-box {
        padding: 2.25rem;
    }
}
