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

:root {
    --primary-green: #2d6a3e;
    --secondary-green: #4a8f5c;
    --light-green: #6ab87d;
    --primary-yellow: #f4c430;
    --secondary-yellow: #ffd966;
    --light-yellow: #ffeb99;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-dark: #2c3e50;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-banner {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-yellow);
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 44px;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

nav a:hover {
    color: var(--primary-green);
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 106, 62, 0.3);
}

.cta-btn.large {
    padding: 16px 40px;
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--primary-yellow) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.disclaimer-text {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.featured-games {
    background-color: var(--light-gray);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.game-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: var(--primary-green);
}

.game-card p {
    padding: 0 20px 20px;
    color: var(--text-dark);
}

.game-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.game-btn:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
}

.benefits-list {
    max-width: 800px;
    margin: 30px auto;
    list-style: none;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 20px;
}

.important-note {
    background-color: var(--light-yellow);
    border-left: 4px solid var(--primary-yellow);
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
}

.testimonials {
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial p {
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-green);
    font-style: normal;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.subtext {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.full-disclaimer {
    background-color: var(--dark-gray);
    color: var(--white);
}

.full-disclaimer h2 {
    color: var(--white);
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content p {
    margin: 10px 0;
    font-size: 16px;
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.support-orgs {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.support-orgs h4 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.support-orgs p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}


.hero-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h3 {
    color: var(--primary-green);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section h4 {
    color: var(--secondary-green);
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-box {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-green);
}

.warning-box {
    background-color: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-yellow);
}

.support-box {
    background-color: var(--light-green);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.support-box h3 {
    color: var(--white);
}

.support-box a {
    color: var(--white);
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    flex: 1;
    margin: 0;
    font-weight: 400;
}

.form-note {
    background-color: var(--light-yellow);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.top-disclaimer {
    background-color: var(--light-yellow);
    border: 2px solid var(--primary-yellow);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.top-disclaimer h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.top-disclaimer p {
    margin: 10px 0;
    font-weight: 500;
}

.game-container {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.game-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.game-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.game-disclaimer {
    background-color: var(--light-yellow);
    border-left: 4px solid var(--primary-yellow);
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    nav.active {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    section h2 {
        font-size: 28px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}
