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

:root {
    --primary-green: #1a5f3d;
    --secondary-green: #2d8659;
    --light-green: #4caf50;
    --primary-yellow: #ffc107;
    --secondary-yellow: #ffeb3b;
    --dark-bg: #0f1f13;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-dark: #212121;
    --border-color: #ddd;
}

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;
}

.container-full {
    width: 100%;
    padding: 0;
}

.header {
    background-color: var(--primary-green);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    text-decoration: none;
    text-transform: lowercase;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-login {
    background-color: var(--primary-yellow);
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
}

.btn-login:hover {
    background-color: var(--secondary-yellow);
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

.featured-game {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.featured-game h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.game-showcase {
    display: flex;
    justify-content: center;
}

.game-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 400px;
    text-align: center;
}

.game-image {
    margin-bottom: 1.5rem;
}

.game-placeholder {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
}

.game-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.game-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.about-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonials {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-yellow);
}

.testimonial-card p {
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-green);
    font-style: italic;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.disclaimer-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.age-restriction {
    background-color: var(--primary-yellow);
    color: var(--primary-green);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.disclaimer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.disclaimer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.support-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
}

.support-item strong {
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.support-item p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

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

.page-hero h1 {
    font-size: 2.5rem;
}

.about-detailed {
    padding: 4rem 0;
}

.about-text h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h3 {
    color: var(--secondary-green);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.features-list {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.features-list li {
    margin-bottom: 0.5rem;
}

.cta-box {
    text-align: center;
    margin-top: 3rem;
}

.responsible-content {
    padding: 4rem 0;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.guideline-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.guideline-section h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.guideline-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.guideline-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.support-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.support-section h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.support-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--secondary-green) 100%);
    border-radius: 2px;
}

.support-section > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.support-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 12px 0 100%;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-left-color: var(--secondary-green);
}

.resource-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.resource-web, .resource-phone {
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    display: block;
}

.resource-web::before {
    content: '🌐 ';
    margin-right: 0.3rem;
}

.resource-phone::before {
    content: '📞 ';
    margin-right: 0.3rem;
}

.warning-signs {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.warning-signs h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.warning-signs ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.contact-section {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.game-disclaimer {
    background-color: var(--primary-yellow);
    padding: 1.5rem 0;
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content p {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.game-container {
    background-color: var(--dark-bg);
    padding: 0;
}

.game-wrapper {
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: var(--secondary-green);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-disclaimer {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-green);
        padding: 1rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

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

    .game-wrapper {
        height: 60vh;
    }
}