@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #059669;
    --forest: #047857;
    --cream: #FFFBEB;
    --charcoal: #1C1917;
    --stone: #78716C;
    --lime: #84CC16;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar {
    background: var(--emerald);
    color: white;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.main-header {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--charcoal);
}

.brand-emblem {
    width: 55px;
    height: 55px;
    background: var(--emerald);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
}

.brand-title {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.primary-nav a {
    color: var(--stone);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

.primary-nav a:hover {
    color: var(--emerald);
}

.mobile-menu-btn {
    display: none;
    background: var(--emerald);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-size: 1.3rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .primary-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .primary-nav ul.open {
        display: flex;
    }
    
    .primary-nav li {
        padding: 1.2rem 0;
        border-bottom: 1px solid var(--cream);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-header {
        position: relative;
    }
}

.banner-section {
    background: linear-gradient(to right, var(--forest), var(--lime));
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.banner-section h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-section p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.primary-cta {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: white;
    color: var(--emerald);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.main-content {
    padding: 4rem 2rem;
}

.text-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.text-section h2 {
    font-size: 2.6rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.text-section p {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.highlight-box {
    background: white;
    border: 3px solid var(--emerald);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 900px;
}

.highlight-box h3 {
    color: var(--emerald);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.highlight-box li::before {
    content: "✦ ";
    color: var(--lime);
    font-size: 1.3rem;
    margin-right: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
}

.benefit-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.benefit-emoji {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 700;
}

.benefit-item p {
    line-height: 1.7;
}

.game-section {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 4rem auto;
}

.game-section h2 {
    text-align: center;
    color: var(--emerald);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.game-section iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

.bottom-footer {
    background: var(--charcoal);
    color: white;
    padding: 3.5rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-container p {
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.responsible-links a:hover {
    color: white;
}

.age-check {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.age-check.hidden {
    display: none;
}

.age-check-inner {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    max-width: 560px;
    text-align: center;
    margin: 1rem;
}

.age-check-inner h2 {
    color: var(--emerald);
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-check-inner p {
    color: var(--stone);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.age-choice {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
}

.age-option {
    padding: 1.3rem 2.8rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.age-option:hover {
    transform: scale(1.08);
}

.age-option.yes {
    background: var(--emerald);
    color: white;
}

.age-option.no {
    background: #DC2626;
    color: white;
}

@media (max-width: 768px) {
    .banner-section h1 {
        font-size: 2.5rem;
    }
    
    .game-section iframe {
        height: 450px;
    }
    
    .age-choice {
        flex-direction: column;
    }
    
    .age-option {
        width: 100%;
    }
}
