/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary {
    border-radius: 12px;
background: linear-gradient(180deg, #00F200 0%, #009600 100%);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc00, #009900);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff00ff, #cc00cc);
    color: #fff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #cc00cc, #990099);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-wide {
    width: 100%;
    padding: 16px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.show {
    display: flex; /* Show when class 'show' is added */
}

.modal-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
}

/* Age Verification Modal */
.age-verification .age-icon {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid #fff;
}

.age-number {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

.age-verification h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-verification p {
    margin-bottom: 30px;
    color: #ccc;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-buttons .btn {
    flex: 1;
    max-width: 150px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 20px;
    z-index: 9999;
    border-top: 1px solid #333;
}

.cookie-notice h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cookie-notice p {
    margin-bottom: 20px;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    padding: 10px 25px;
}

/* Thank You Popup */
.thank-you .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.thank-you .close-btn:hover {
    color: #fff;
}

/* Header */
.header {
    background: #000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
}

.logo img {
    width: 30px;
    height: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #00ff00;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Age Disclaimer Bar */
.age-disclaimer {
    background: #ff0000;
    padding: 10px 0;
    margin-top: 70px;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-badge {
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.disclaimer-text {
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
   
}

.hero-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.feature {
    border-radius: 12px;
background: #211E2D;
padding: 20px;
}

.feature h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #ccc;
    line-height: 1.7;
}

.additional-features {
    text-align: center;
    border-radius: 12px;
background: #211E2D;
padding: 20px;
}

.feature-inline h4 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #2a2a2a;
}

.games-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.game-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.game-card .btn {
    width: 100%;
    text-align: center;
}

.game-cont {
    padding: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #1a1a1a;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #2a2a2a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff00;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}

.stat-label {
    color: #ccc;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial h4 {
    color: #00ff00;
    margin-bottom: 15px;
}

.testimonial p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #2a2a2a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff00;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #00ff00;
    margin-bottom: 20px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-item strong {
    color: #00ff00;
    display: block;
    margin-bottom: 5px;
}

.footer-item p {
    color: #ccc;
    margin: 0;
}

.footer-disclaimer {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.age-warning {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.age-warning .age-badge {
    background: #ff0000;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.age-warning h4 {
    color: #ff0000;
    margin-bottom: 10px;
}

.age-warning p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00ff00;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-badges img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.copyright {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}

/* Loading and Animation Classes */
.loaded {
    overflow-x: hidden;
}

/* Form Focus Animations */
.form-group.focused input,
.form-group.focused textarea {
    border-color: #00ff00;
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
}

/* Scroll Animations */
.game-card,
.feature,
.testimonial {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Header Scroll Effect */
.header {
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Responsive Design */

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000;
        transition: left 0.3s ease;
        padding: 40px 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* Layout adjustments */
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cookie notice */
    .cookie-buttons {
        flex-direction: column;
    }
    
    /* Age verification */
    .age-buttons {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Age warning */
    .age-warning {
        flex-direction: column;
        text-align: center;
    }
    
    /* Disclaimer content */
    .disclaimer-content {
        /* flex-direction: column; */
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .btn-large {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Additional mobile optimizations */
    .hero {
        padding: 40px 0;
    }
    
    .why-choose,
    .games,
    .about,
    .stats,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .age-disclaimer {
        padding: 8px 0;
    }
    
    .disclaimer-text {
        font-size: 12px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-disclaimer {
        padding: 20px;
    }
    
    .footer-disclaimer .age-warning {
        gap: 15px;
    }
}



.games-section {
    padding: 80px 0;
}

.game-frame {
    width: 100%;
    aspect-ratio: 110 / 62;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.iframe {
    width: 100%;
    height: 100%;
}

              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                