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

:root {
    --primary-purple: #6B46C1;
    --dark-purple: #553C9A;
    --light-purple: #9F7AEA;
    --accent-purple: #805AD5;
    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --light-gray: #E2E8F0;
    --gray: #A0AEC0;
    --dark-gray: #4A5568;
    --text-dark: #1A202C;
    --border-color: #CBD5E0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 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-fluid {
    max-width: 100%;
    padding: 0 20px;
}

.header {
    background-color: var(--white);
    border-bottom: 2px solid var(--light-gray);
    padding: 1rem 0;
    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: 700;
    color: var(--primary-purple);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav a:hover,
.nav a.active {
    color: var(--primary-purple);
}

.btn-login {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: var(--dark-purple);
    color: var(--white);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    margin: 3px 0;
    border-radius: 2px;
}

.age-restriction-banner {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-purple);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.game-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.about-preview {
    padding: 4rem 0;
    text-align: center;
}

.about-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-preview p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.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: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.testimonial-author {
    color: var(--primary-purple);
    font-weight: 600;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.disclaimer h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.disclaimer-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.support-organizations {
    padding: 4rem 0;
    text-align: center;
}

.support-organizations h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support-organizations > p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

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

.support-item {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.support-item p {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.footer {
    background-color: var(--text-dark);
    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-section h4 {
    margin-bottom: 1rem;
    color: var(--light-purple);
}

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

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

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

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

.footer-section p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

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

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

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

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

.content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.content-wrapper p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

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

.responsible-card {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-purple);
}

.responsible-card h3 {
    color: var(--primary-purple);
    margin-top: 0;
}

.responsible-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.responsible-card li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.warning-signs {
    background-color: #FFF5F5;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #E53E3E;
}

.warning-signs h3 {
    color: #E53E3E;
    margin-top: 0;
}

.warning-signs ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.warning-signs li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.support-resources {
    margin-top: 3rem;
}

.support-resources h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
}

.resource-card h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.resource-card p {
    margin-bottom: 0.5rem;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checkbox-label span {
    color: var(--dark-gray);
}

.checkbox-label a {
    color: var(--primary-purple);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.game-disclaimer {
    padding: 2rem 0;
    background-color: var(--off-white);
}

.disclaimer-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-purple);
    max-width: 900px;
    margin: 0 auto;
}

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

.disclaimer-box p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.game-section {
    padding: 2rem 0 4rem;
}

.game-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--text-dark);
}

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

.game-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-gray);
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-purple);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.legal-content a {
    color: var(--primary-purple);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav.active {
        display: flex;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .game-container iframe {
        height: 500px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .game-container iframe {
        height: 400px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Compliance Notice Styles */
.compliance-notice-section {
    background: #fff;
    padding: 0;
}

.compliance-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.compliance-box h3 {
    margin-top: 0;
    color: #856404;
    font-size: 1.1rem;
    font-weight: 600;
}

.compliance-box ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    color: #856404;
}

.compliance-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.compliance-box strong {
    color: #533f03;
}

/* Legal Notice Banner */
.legal-notice {
    background: #f8f9fa;
    padding: 15px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.legal-notice p {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* IAP Notice */
.iap-notice {
    margin-top: 15px;
    padding: 10px 15px;
    background: #e7f3ff;
    border-left: 3px solid #0066cc;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #004085;
}

/* Footer enhancements */
.footer-bottom p {
    line-height: 1.6;
}

/* Game placeholder animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .compliance-box {
        margin: 15px;
        padding: 15px;
    }

    .legal-notice p {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .iap-notice {
        font-size: 0.85rem;
    }
}
