/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #cccccc;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid #666;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: border-color 0.3s;
}

.btn-decline:hover {
    border-color: #888;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-content {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.age-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.age-content p {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 16px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-18plus {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-18plus:hover {
    background-color: #45a049;
}

.btn-under18 {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-under18:hover {
    background-color: #c82333;
}

/* Header */
.header {
    background-color: #2a2a2a;
    padding: 15px 0 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
   text-decoration: none;
   color: #FFF;
font-family: Ubuntu;
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.header-disc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FB194F;
    padding: 24px 15px;
}

.disc-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
     max-width: 710px;
    margin: 0 auto;
    line-height: 1;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 100px 0 100px;
    text-align: center;
    position: relative;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-badge {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
     display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.feature-icon {
    max-width: 237px;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    width: 100%;
   
    object-fit: contain;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 100px 0;
    background-color: #2a2a2a;
}

.games h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.games-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
   
}

.game-image {
    width: 100%;
   display: block;
}

.game-image img {
    width: 100%;
}

.game-content {
    border-radius: 0 0 12px 12px;
border-right: 1px solid #484D52;
border-bottom: 1px solid #484D52;
border-left: 1px solid #484D52;
background: #1F2123;
padding: 24px;
}

.play-btn {
    border-radius: 12px;
background: linear-gradient(180deg, #FDDF36 0%, #FB194F 100%);
box-shadow: 0 4px 16px 0 #EF1A4B;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.play-btn:hover {
    transform: translateY(-2px);
}

.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%;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.casino-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: #2a2a2a;
    background-image: url(../images/stats.png);
    background-position: center;
    background-size: cover;
}

.stats h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    border-radius: 12px;
border: 1px solid #484D52;
background: #1F2123;
padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.stat-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    margin-right: 15px;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-name {
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.testimonial-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #2a2a2a;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 2px solid #444;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
background: linear-gradient(180deg, #FDDF36 0%, #FB194F 100%);
box-shadow: 0 4px 16px 0 #EF1A4B;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.disclaimer p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer strong {
    color: #ff6b35;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4CAF50;
    text-decoration: underline;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge {
    height: 50px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #888;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.close:hover {
    color: white;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2a2a2a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .features,
    .games,
    .about,
    .stats,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .disc-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
     max-width: 710px;
    margin: 0 auto;
    line-height: 1;
}

    .features h2,
    .games h2,
    .about h2,
    .stats h2,
    .testimonials h2,
    .contact h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .age-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .age-content {
        padding: 30px 20px;
    }

    .age-content h2 {
        font-size: 28px;
    }

    .cookie-content {
        padding: 0 10px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}


              .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;
                }

                