@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

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

:root {
    --fresh-green: #22c55e;
    --lime: #84cc16;
    --orange: #f97316;
    --cherry: #ef4444;
    --cream: #fffbeb;
    --white: #ffffff;
    --dark: #1c1917;
    --text-dark: #292524;
    --text-muted: #78716c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.75;
}

a {
    color: var(--fresh-green);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--orange);
}

/* Header */
.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fresh-green);
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.site-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.site-nav a:hover {
    color: var(--orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--fresh-green);
    border-radius: 3px;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
}

.nav-overlay.visible {
    display: flex;
}

.nav-overlay a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.close-nav {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--orange);
    cursor: pointer;
}

/* Hero */
.hero-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero-box {
    max-width: 850px;
    text-align: center;
}

.hero-box h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-box h1 span {
    color: var(--fresh-green);
}

.hero-box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.fresh-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--fresh-green), var(--lime));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: all 0.3s;
}

.fresh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    color: white;
}

/* Info Strip */
.info-strip {
    padding: 4rem 2rem;
    background: var(--white);
}

.strip-items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.strip-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--cream);
    transition: all 0.3s;
}

.strip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strip-item .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strip-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--orange);
}

.strip-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Zone */
.game-zone {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--fresh-green), var(--lime));
}

.game-zone h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: white;
}

.game-window {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-window iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    display: block;
}

/* Perks */
.perks-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.perks-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.perks-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.perk-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.perk-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.perk-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--fresh-green);
}

.perk-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Page Section */
.page-section {
    min-height: 100vh;
    padding: 100px 2rem 4rem;
    background: var(--cream);
}

.page-card {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.page-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--fresh-green);
}

.page-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--orange);
}

.page-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.page-card ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

.page-card li {
    margin-bottom: 0.5rem;
}

/* Play Page */
.play-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.game-tip-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(132, 204, 22, 0.1));
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.game-tip-box p {
    margin: 0;
    color: var(--text-dark);
}

/* Footer */
.main-footer {
    background: var(--dark);
    padding: 4rem 2rem;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fresh-green);
    margin-bottom: 1.5rem;
}

.help-area {
    margin-bottom: 1.5rem;
}

.help-area p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.help-area a {
    color: white;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--fresh-green);
}

.age-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btns button {
    padding: 0.9rem 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.yes-btn {
    background: linear-gradient(135deg, var(--fresh-green), var(--lime));
    color: white;
}

.yes-btn:hover {
    transform: scale(1.05);
}

.no-btn {
    background: var(--cream);
    color: var(--text-dark);
}

.no-btn:hover {
    background: var(--orange);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .perks-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    .brand {
        font-size: 1.5rem;
    }
    
    .hero-area {
        padding: 100px 1rem 60px;
    }
    
    .game-window iframe {
        height: 400px;
    }
    
    .page-card {
        padding: 2rem 1.5rem;
    }
    
    .age-card {
        padding: 2rem;
    }
    
    .age-btns {
        flex-direction: column;
    }
    
    .help-area a {
        display: block;
        margin: 0.5rem 0;
    }
}
