@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #1b4332;
    --emerald: #2d6a4f;
    --sage: #40916c;
    --mint: #74c69d;
    --cream: #f8f9f0;
    --bark: #3d2914;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--bark);
    line-height: 1.7;
}

.top-header {
    background: var(--forest);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mint);
    text-decoration: none;
    letter-spacing: 1px;
}

.mobile-menu {
    display: none;
    background: none;
    border: 2px solid var(--mint);
    color: var(--mint);
    font-size: 1.4rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-links a:hover {
    background: var(--mint);
    color: var(--forest);
}

.intro-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 50%, var(--sage) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.highlight-boxes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 12px;
    color: var(--cream);
    backdrop-filter: blur(5px);
}

.highlight h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.game-garden {
    padding: 4rem 2rem;
    background: var(--cream);
}

.garden-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--forest);
    text-align: center;
    margin-bottom: 2rem;
}

.game-display {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--forest);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.3);
}

.game-display iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.benefits-area {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--cream), #e8f0e8);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.1);
    border-top: 4px solid var(--sage);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.story-section {
    padding: 5rem 2rem;
    background: var(--emerald);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--cream);
}

.story-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #e8f0e8, var(--cream));
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(27, 67, 50, 0.1);
}

.page-container h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--forest);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--mint);
    padding-bottom: 1rem;
}

.page-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--emerald);
    margin: 2rem 0 1rem;
}

.page-container p {
    margin-bottom: 1.2rem;
    color: var(--bark);
}

.page-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.page-container li {
    margin-bottom: 0.7rem;
}

.play-notice {
    background: linear-gradient(135deg, var(--sage), var(--emerald));
    color: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.site-footer {
    background: var(--forest);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-menu a {
    color: var(--mint);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--cream);
}

.responsible-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--emerald);
}

.responsible-section h4 {
    color: var(--mint);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.responsible-section a {
    color: var(--cream);
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
}

.responsible-section a:hover {
    opacity: 1;
}

.footer-copy {
    margin-top: 2rem;
    color: var(--cream);
    opacity: 0.6;
}

.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(27, 67, 50, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-box h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.popup-box p {
    margin-bottom: 1.5rem;
    color: var(--bark);
}

.popup-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btns button {
    font-family: 'Nunito', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--emerald);
    color: white;
}

.btn-accept:hover {
    background: var(--forest);
    transform: scale(1.03);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--forest) !important;
    color: var(--forest);
}

.btn-decline:hover {
    background: var(--forest);
    color: white;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--forest);
        flex-direction: column;
        padding: 1rem;
        display: none;
    }

    .nav-links.visible {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
    }

    .intro-section h1 {
        font-size: 2.4rem;
    }

    .highlight-boxes {
        flex-direction: column;
        align-items: center;
    }

    .game-display iframe {
        height: 420px;
    }

    .page-container {
        padding: 2rem;
    }

    .popup-btns {
        flex-direction: column;
    }
}
