@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #064e3b;
    --emerald: #10b981;
    --leaf: #34d399;
    --mint-cream: #ecfdf5;
    --dark-moss: #022c22;
    --gold-accent: #fbbf24;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, var(--dark-moss) 0%, #041f1a 50%, var(--dark-moss) 100%);
    color: var(--mint-cream);
    min-height: 100vh;
    line-height: 1.75;
}

.forest-header {
    background: linear-gradient(90deg, rgba(6, 78, 59, 0.95) 0%, rgba(2, 44, 34, 0.9) 50%, rgba(6, 78, 59, 0.95) 100%);
    border-bottom: 2px solid var(--emerald);
    padding: 0.85rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-row {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forest-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.forest-brand svg {
    width: 44px;
    height: 44px;
}

.brand-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--leaf);
    letter-spacing: 0.5px;
}

.mobile-nav-btn {
    display: none;
    background: none;
    border: 1px solid var(--emerald);
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 6px;
}

.mobile-nav-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emerald);
    margin: 5px 0;
}

.forest-nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.forest-nav a {
    color: var(--mint-cream);
    text-decoration: none;
    padding: 0.55rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.25s;
}

.forest-nav a:hover {
    background: rgba(16, 185, 129, 0.2);
    color: var(--leaf);
}

.hero-forest {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.2) 0%, transparent 65%);
}

.hero-forest h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--leaf);
    margin-bottom: 1.25rem;
}

.hero-forest > p {
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto;
}

.leaf-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.leaf-card {
    background: linear-gradient(145deg, rgba(6, 78, 59, 0.7) 0%, rgba(2, 44, 34, 0.9) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 1.75rem;
}

.leaf-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.game-grove {
    max-width: 1450px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.game-grove h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2rem;
    color: var(--leaf);
    margin-bottom: 1.5rem;
}

.grove-frame {
    background: rgba(6, 78, 59, 0.5);
    border: 2px solid var(--emerald);
    border-radius: 16px;
    padding: 0.7rem;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
}

.grove-frame iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 12px;
    display: block;
}

.nature-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.nature-feature {
    background: rgba(6, 78, 59, 0.4);
    border-radius: 12px;
    padding: 1.75rem;
    border-left: 4px solid var(--gold-accent);
}

.nature-feature h3 {
    font-family: 'Playfair Display', serif;
    color: var(--leaf);
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}

.text-grove {
    max-width: 920px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.text-grove h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--leaf);
    text-align: center;
    margin-bottom: 2rem;
}

.text-grove h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--gold-accent);
    margin: 2rem 0 0.75rem;
}

.text-grove p {
    margin-bottom: 1rem;
}

.text-grove ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.text-grove li {
    margin-bottom: 0.5rem;
}

.forest-footer {
    background: rgba(6, 78, 59, 0.8);
    border-top: 2px solid var(--emerald);
    padding: 2.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-row {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-row h4 {
    font-family: 'Playfair Display', serif;
    color: var(--leaf);
    margin-bottom: 1.25rem;
}

.help-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.help-links a {
    color: var(--mint-cream);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--emerald);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.25s;
}

.help-links a:hover {
    background: var(--emerald);
    color: var(--dark-moss);
}

.footer-fine {
    color: rgba(236, 253, 245, 0.5);
    font-size: 0.85rem;
}

.age-barrier {
    position: fixed;
    inset: 0;
    background: rgba(2, 44, 34, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-barrier.hidden {
    display: none;
}

.barrier-content {
    background: var(--forest);
    border: 2px solid var(--emerald);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    margin: 1rem;
    text-align: center;
}

.barrier-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--leaf);
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.barrier-content p {
    margin-bottom: 1.5rem;
}

.barrier-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.barrier-btns button {
    padding: 0.85rem 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-allow {
    background: linear-gradient(135deg, var(--emerald), var(--leaf));
    color: var(--dark-moss);
}

.btn-allow:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.4);
}

.btn-deny {
    background: transparent;
    border: 1px solid var(--mint-cream) !important;
    color: var(--mint-cream);
}

.btn-deny:hover {
    background: rgba(236, 253, 245, 0.1);
}

.play-info {
    background: rgba(6, 78, 59, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.play-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--leaf);
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .mobile-nav-btn {
        display: block;
    }

    .forest-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--forest);
        border-bottom: 2px solid var(--emerald);
        display: none;
    }

    .forest-nav.revealed {
        display: block;
    }

    .forest-nav ul {
        flex-direction: column;
        padding: 0.75rem;
    }

    .forest-nav a {
        display: block;
        padding: 0.9rem;
    }

    .hero-forest h1 {
        font-size: 2.2rem;
    }

    .brand-label {
        font-size: 1.3rem;
    }

    .grove-frame iframe {
        height: 400px;
    }

    .barrier-btns {
        flex-direction: column;
    }
}
