/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.age-verification.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-content {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    margin: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #ffffff;
    opacity: 0.95;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-confirm,
.btn-age-deny {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-age-confirm:hover {
    background-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-age-deny {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-age-deny:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-content {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    margin: 20px;
}

.cookie-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-info {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-accept:hover,
.btn-info:hover {
    background-color: #c53030;
}

/* Header */
.header {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    font-size: 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #e53e3e;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.burger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.hero-subtitle {
    font-weight: 600;
    margin-bottom: 40px !important;
}

.btn-primary {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background-color: #c53030;
}

/* Casino Section */
.casino-section {
    padding: 60px 0;
}

.casino-image {
    text-align: center;
}

.casino-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.about p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.advantages h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: #c53030;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

/* Games Section */
.games-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.games-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.games-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.games-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.games-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Why Play Section */
.why-play {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.why-play h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}

.why-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-play-card {
    border: 2px solid #C24747;
background: rgba(194, 71, 71, 0.20);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
}

.why-play-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-play-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.why-play-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #1a1a1a;
    background-image: url('../images/cbcg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.8);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 15px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cccccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e53e3e;
}

.btn-submit {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background-color: #c53030;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.disclaimer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.disclaimer p {
    font-size: 12px;
    line-height: 1.4;
    color: #cccccc;
}

.footer-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-icons img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e53e3e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .games-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        padding: 20px;
        transform: translateY(-140%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .about h2,
    .advantages h2,
    .games-text h2,
    .why-play h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .why-play-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept,
    .btn-info {
        width: 200px;
    }
    
    /* Age Verification Mobile */
    .age-content {
        padding: 40px 25px;
    }
    
    .age-content h3 {
        font-size: 28px;
    }
    
    .age-content p {
        font-size: 16px;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-age-confirm,
    .btn-age-deny {
        width: 200px;
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .about h2,
    .advantages h2,
    .games-text h2,
    .why-play h2,
    .contact h2 {
        font-size: 24px;
    }
    
    .advantage-card,
    .why-play-card {
        padding: 25px 20px;
    }
    
    .footer-icons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Age Verification Mobile Small */
    .age-content {
        padding: 30px 20px;
    }
    
    .age-content h3 {
        font-size: 24px;
    }
    
    .age-content p {
        font-size: 14px;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .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;
                }

                