* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f59e0b;
    --red: #ef4444;
    --yellow: #fbbf24;
    --cream: #fffbeb;
    --dark: #292524;
    --gray: #78716c;
    --light-gray: #f5f5f4;
    --border: #e7e5e4;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Age Gate */
.age-gate-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-modal.hidden {
    display: none;
}

.age-gate-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--orange);
}

.gate-icon {
    font-size: 70px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.gate-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 15px;
    font-weight: 700;
}

.gate-message {
    font-size: 18px;
    margin-bottom: 10px;
}

.gate-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
}

.gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gate-btn {
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s;
}

.gate-btn.accept {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
}

.gate-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.gate-btn.reject {
    background: var(--light-gray);
    color: var(--gray);
}

.gate-btn.reject:hover {
    background: var(--border);
}

/* Navigation */
.top-navigation {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--orange);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-bar {
    width: 28px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-btn.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 100px 30px;
    text-align: center;
}

.hero-h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-chips {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Sections */
.about-section, .perks-section, .notice-area, .game-section, .highlights-section {
    padding: 80px 30px;
}

.section-h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 30px;
    font-weight: 700;
}

.section-h2.center {
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Perks Section */
.perks-section {
    background: white;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.perk-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--border);
    transition: all 0.3s;
}

.perk-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.perk-emoji {
    font-size: 55px;
    margin-bottom: 20px;
}

.perk-h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 15px;
    font-weight: 700;
}

.perk-text {
    color: var(--gray);
    line-height: 1.7;
}

/* Notice Area */
.notice-area {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
}

.notice-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--orange);
}

.notice-h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 30px;
    text-align: center;
}

.notice-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notice-point {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: 15px;
    align-items: flex-start;
}

.point-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.point-text {
    line-height: 1.7;
}

.point-text strong {
    color: var(--orange);
    font-weight: 700;
}

/* Game Section */
.game-section {
    background: white;
}

.game-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
}

.game-frame-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--orange);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.25);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-reminder {
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    color: var(--gray);
    font-weight: 600;
}

/* Highlights Section */
.highlights-section {
    background: var(--cream);
}

.highlights-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

.highlight-row {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: white;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.highlight-row:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.15);
}

.row-num {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
}

.row-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    color: var(--orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.row-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 60px 30px 30px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-h4 {
    font-family: 'Quicksand', sans-serif;
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.footer-p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-credits {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    opacity: 0.75;
}

/* Play Page */
.play-main {
    background: white;
}

.play-intro {
    background: var(--cream);
    padding: 60px 30px;
    text-align: center;
}

.play-h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.play-intro-text {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.play-game-area {
    background: #000;
    padding: 0;
}

.play-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.play-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.play-info-section {
    padding: 80px 30px;
}

.play-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.play-info-box h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 15px;
    font-weight: 700;
}

.play-info-box p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Doc Page */
.doc-page {
    background: white;
    min-height: 70vh;
}

.doc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.doc-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.doc-date {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 50px;
}

.doc-section {
    margin-bottom: 40px;
}

.doc-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 15px;
    font-weight: 700;
}

.doc-section h3 {
    font-size: 22px;
    color: var(--red);
    margin: 20px 0 12px;
    font-weight: 600;
}

.doc-section ul {
    margin-left: 25px;
    margin-top: 15px;
}

.doc-section li {
    margin-bottom: 10px;
}

.doc-section a {
    color: var(--orange);
    text-decoration: none;
}

.doc-section a:hover {
    text-decoration: underline;
}

.doc-section.important {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    border: 3px solid var(--orange);
    padding: 30px;
    border-radius: 15px;
}

.big-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 30px;
        gap: 0;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .hero-h1 {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .brand-name {
        font-size: 24px;
    }

    .section-h2 {
        font-size: 32px;
    }

    .game-frame {
        height: 450px;
    }

    .play-iframe {
        height: 550px;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .play-info-boxes {
        grid-template-columns: 1fr;
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }

    .age-gate-card {
        padding: 30px 20px;
        margin: 20px;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }

    .notice-box {
        padding: 30px 20px;
    }

    .highlight-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .notice-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 28px;
    }

    .game-frame {
        height: 400px;
    }

    .play-iframe {
        height: 450px;
    }
}
