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

:root {
    --primary-green: #1a4d2e;
    --secondary-green: #2d7a4f;
    --light-green: #4a8c5e;
    --dark-bg: #0a1f14;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #e0e0e0;
    --border-color: #2d7a4f;
}

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

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

.age-banner {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 2px solid var(--secondary-green);
}

header {
    background-color: rgba(26, 77, 46, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--light-green);
}

.btn-join {
    background-color: var(--secondary-green);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-join:hover {
    background-color: var(--light-green);
}

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

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

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

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-green);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--light-green);
}

.disclaimer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

section {
    padding: 80px 0;
}

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

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

.featured-games {
    background-color: rgba(26, 77, 46, 0.1);
}

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

.game-card {
    background-color: rgba(45, 122, 79, 0.2);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 122, 79, 0.3);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.game-image {
    margin-bottom: 20px;
}

.game-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon {
    font-size: 80px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.game-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.virtual-badge {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
}

.about-platform {
    background-color: var(--dark-bg);
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(45, 122, 79, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 40px;
    color: var(--secondary-green);
    display: block;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-gray);
}

.important-note {
    background-color: rgba(45, 122, 79, 0.2);
    padding: 20px;
    border-left: 4px solid var(--secondary-green);
    border-radius: 5px;
    font-size: 16px;
}

.testimonials {
    background-color: rgba(26, 77, 46, 0.1);
}

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

.testimonial-card {
    background-color: rgba(45, 122, 79, 0.2);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
}

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

.testimonial-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-gray);
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.full-disclaimer {
    background-color: rgba(26, 77, 46, 0.3);
    border-top: 3px solid var(--secondary-green);
    border-bottom: 3px solid var(--secondary-green);
}

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

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

footer {
    background-color: var(--primary-green);
    padding: 60px 0 20px;
    color: var(--white);
}

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

.footer-col h3,
.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.support-links {
    margin-top: 20px;
}

.support-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.support-links ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
    }

    nav ul.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    section h2 {
        font-size: 28px;
    }

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

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

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(45, 122, 79, 0.2);
    padding: 40px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: rgba(26, 77, 46, 0.3);
    color: var(--white);
    font-size: 16px;
}

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

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

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

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

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

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

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

.content-section p,
.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.content-section ul {
    list-style-position: inside;
    margin-left: 20px;
}

.warning-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.info-box {
    background-color: rgba(45, 122, 79, 0.2);
    border-left: 4px solid var(--secondary-green);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.game-disclaimer-box {
    background-color: rgba(26, 77, 46, 0.5);
    border: 2px solid var(--secondary-green);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
}

.game-disclaimer-box p {
    margin-bottom: 10px;
    font-size: 14px;
}

.game-iframe-container {
    margin: 30px 0;
    border: 3px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.game-iframe-container iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
}

.contact-info {
    background-color: rgba(45, 122, 79, 0.2);
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.contact-info strong {
    color: var(--white);
}
