/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0F0F0F;
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #e91e63;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    text-align: center;
    color: #333;
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cookie-content h3 {
    color: #8e24aa;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-btn {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.learn-more-btn {
    background: transparent;
    color: #8e24aa;
    border: 2px solid #8e24aa;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.learn-more-btn:hover {
    background: #8e24aa;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    color: #FFF;
font-family: Inter;
font-size: 26px;
font-style: normal;
font-weight: 800;
line-height: normal;
text-transform: uppercase;
    width: auto;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(../images/hbcg.png);
    background-position: center;
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #ffadc9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url(../images/list.png);
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    font-weight: bold;
}

.update-date {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 614px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.roulette-image {
    max-width: 100%;
    height: auto;
    width: 100%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Top Casinos Section */
.top-casinos {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.7);
    background-image: url(../images/fbcg.png);
    background-position: center;
    background-size: cover;
}

.casino-card {
    border-radius: 22px;
background: linear-gradient(105deg, #7200A8 0%, #EE15C3 100%);
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 200px;
    width: 100%;
}

.casino-logo {
   
    width: auto;
}

.casino-details {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 5px;
    max-width: 258px;
    width: 100%;
}

.bonus-label {
    background: #ffc107;
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

.bonus-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    max-width: 116px;
    width: 100%;
}

.payment-methods img {
    max-width: 57px;
    width: 100%;
    flex: 0 1 49%;
    background: white;
    border-radius: 4px;
}

.bonus-btn {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #333;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Main Info Section */
.main-info {
    padding: 80px 0;
    border-top: 4px solid var(--gr1, #9E19DC);
background: linear-gradient(105deg, rgba(158, 25, 220, 0.30) 0%, rgba(209, 33, 206, 0.30) 100%);
    position: relative;
    overflow: hidden;
}

.main-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block {
    text-align: left;
}

.info-block .section-icon {
    font-size: 2.5rem;
    color: #8e24aa;
    margin-bottom: 15px;
    display: block;
}

.info-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.95;
    margin: 0;
}

.info-images {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    min-height: 500px;
    max-width: 418px;
    right: -2%;
bottom: 5%;
}

.casino-elements {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Footer */
.footer {
    border-top: 4px solid  #9E19DC;
background: linear-gradient(105deg, rgba(158, 25, 220, 0.10) 0%, rgba(209, 33, 206, 0.10) 100%);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-logos,
.footer-logos-second {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-logos a {
    border-radius: 24px;
background: rgba(255, 255, 255, 0.07);
display: flex;
    justify-content: center;
    align-items: center;
    width: 285px;
    height: 108px;
    transition: all 0.3s ease-in-out;
}

.footer-logos a:hover {
    
background: rgba(255, 255, 255, 0.02);

}



.footer-logo {
   
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.age-icon {
    margin-left: 20px;
}

.age-circle {
    background: #e91e63;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #fff;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.footer-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
    text-transform: uppercase;
}

.footer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

@media (max-width: 968px) {
    .hero {
        padding-bottom: 0;
    }
     .hero-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
       
    }
  .hero-image {
    position: relative;
    align-self: flex-end;
    right: -20px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .main-info-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .info-content {
        gap: 40px;
    }

    .info-block {
        text-align: center;
    }

    .info-block h2 {
        font-size: 1.5rem;
    }

    .info-images {
        min-height: 300px;
    }

    .casino-card {
        flex-wrap: wrap;
        gap: 15px;
       text-align: left;
    }

    .casino-details {
        text-align: left;
        align-items: flex-start;
    }

    .casino-info {
        justify-content: center;
        gap: 15px;
        max-width: 100%;
    }

    .payment-methods {
        max-width: 100%;

    }

    .main-info-container {
        display: flex;
        flex-direction: column;
    }

    .info-images {
        position: relative;
        right: -20px;
        bottom: auto;
        align-self: flex-end;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .age-icon {
        margin-left: 0;
    }

    .cookie-consent {
        padding: 20px;
        margin: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .casino-card {
        padding: 20px;
    }

    .bonus-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .payment-methods {
        justify-content: center;
    }

    .payment-methods img {
     
    }

    .info-block .section-icon {
        font-size: 2rem;
    }

    .info-block h2 {
        font-size: 1.3rem;
    }

    .main-info {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Additional hover effects */
.casino-card:hover .casino-logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hero-image:hover .roulette-image {
    animation-duration: 2s;
}

.page-title {
    padding: 40px 0;
    background-image: url(../images/hbcg.png);
    background-position: center;
    background-size: cover;
    color: #fff;
}

              .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;
                }

                