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

:root {
    --primary-color: #00ff41;
    --secondary-color: #0a0a0a;
    --text-color: #ffffff;
    --text-dark: #000000;
    --background-dark: #000000;
    --background-light: #0a0a0a;
    --border-color: #00ff41;
    --hover-color: #00cc34;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.header {
    background-color: var(--background-light);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    padding: 6rem 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.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-color);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: bold;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

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

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

.game-card {
    background-color: var(--background-dark);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
}

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

.game-thumbnail {
    flex-shrink: 0;
}

.game-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
}

.game-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.game-info p {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

.testimonial-card {
    background-color: var(--background-dark);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    text-align: center;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

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

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

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

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-badge {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: bold;
}

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

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

.disclaimer-content p {
    margin-bottom: 1rem;
}

.support-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.support-logo {
    text-align: center;
}

.logo-placeholder {
    background-color: var(--background-light);
    border: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.support-logo p {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.footer {
    background-color: var(--background-light);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

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

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
}

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

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

.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
}

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

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

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

.content-wrapper h2:first-child {
    margin-top: 0;
}

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

.content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.cta-box {
    background-color: var(--background-light);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

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

.responsible-section {
    margin-bottom: 3rem;
}

.tips-list {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1rem;
}

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

.support-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--primary-color);
}

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

.resource-card {
    background-color: var(--background-light);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.resource-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.resource-card a:hover {
    text-decoration: underline;
}

.info-box {
    background-color: var(--background-light);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

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

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

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--background-dark);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: inherit;
}

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

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

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

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

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

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

.game-disclaimer {
    background-color: var(--background-light);
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.disclaimer-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-dark);
    padding: 1rem;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
}

.warning-icon {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.2rem;
}

.disclaimer-text p {
    margin: 0;
    font-size: 0.9rem;
}

.game-section {
    padding: 2rem 0;
    background-color: var(--background-dark);
    min-height: calc(100vh - 200px);
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--background-light);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.legal-content a {
    color: var(--primary-color);
    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(--background-light);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

    .game-preview {
        flex-direction: column;
        text-align: center;
    }

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

    .support-logos {
        flex-direction: column;
        gap: 1rem;
    }

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

    .content-wrapper h2 {
        font-size: 1.5rem;
    }

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

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

    .game-iframe {
        height: 400px;
    }

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