/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1A595D;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(107, 70, 193, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #FCD34D;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cookie-settings,
.btn-cookie-accept {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cookie-settings {
    background: #F59E0B;
    color: #ffffff;
}

.btn-cookie-settings:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.btn-cookie-accept {
    background: #10B981;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Header */
.header {
    
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.cookie-banner-visible {
    top: 200px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FCD34D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FCD34D;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
   
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}

.hero-image {
    max-width: 545px;
    width: 100%;
}

.hero-image img {
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* Casinos Section */
.casinos {
    padding: 60px 0;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.casino-item {
    background: #216E77;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.casino-item:hover::before {
    left: 100%;
}

.casino-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #FCD34D;
}

.casino-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FCD34D;
    min-width: 40px;
    text-align: center;
}

.casino-logo {
    width: 100%;
   max-width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    color: #ffffff;
}

.casino-logo img {
    width: 100%;
}

.casino-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.casino-name small {
    font-size: 0.6rem;
    font-weight: 400;
}

/* Casino-specific backgrounds */
.betclic-bg {
    background: #E53E3E;
}

.bwin-bg {
    background: #1A202C;
}

.pokerstars-bg {
    background: #1A202C;
}

.solverde-bg {
    background: #38A169;
    position: relative;
}

.solverde-bg::before {
    content: '♻';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 1.2rem;
    color: #ffffff;
}

.barriere-bg {
    background: linear-gradient(135deg, #2D5016, #68D391);
    position: relative;
}

.partouche-bg {
    background: linear-gradient(135deg, #E53E3E, #FFF5F5);
    color: #E53E3E;
    position: relative;
}

.partouche-bg::before {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 0.6rem;
    color: #E53E3E;
}

.unibet-bg {
    background: #38A169;
}

.winamax-bg {
    background: #1A202C;
    position: relative;
}

.winamax-bg .casino-name {
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.winamax-bg::before {
    content: 'W';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #E53E3E;
    font-weight: 900;
    z-index: 1;
}

.luckia-bg {
    background: #FF6B35;
}

.luckia-bg::before {
    content: '🍀';
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 0.8rem;
}

.casino888-bg {
    background: #1A202C;
    color: #38A169;
}

.betano-bg {
    background: #E53E3E;
}

.novibet-bg {
    background: #F7FAFC;
    color: #2D3748;
    border: 2px solid #E2E8F0;
}

.betway-bg {
    background: #1A202C;
}

.bidluck-bg {
    background: #38A169;
}

.lebull-bg {
    background: #2C5282;
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: #FCD34D;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.8rem;
    color: #FCD34D;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-description {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
    max-width: 300px;
}

.casino-score {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    min-width: 80px;
}

.casino-action {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-play {
    background: linear-gradient(45deg, #F59E0B, #EAB308);
    color: #ffffff;
    text-decoration: none;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-play:hover {
    background: linear-gradient(45deg, #D97706, #CA8A04);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.casino-deposit {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 400;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FCD34D;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsible Gaming Section */
.responsible {
    padding: 60px 0;
    
}

.responsible-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.responsible-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.organizations {
    margin: 40px 0;
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.org-logo {
    height: 60px;
    max-width: 120px;
    object-fit: contain;
   
 
    transition: opacity 0.3s ease;
}

.org-logo:hover {
    opacity: 1;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.age-icon {
    background: #EF4444;
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.age-text {
    flex: 1;
}

.age-text p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.age-text strong {
    color: #FCD34D;
}

/* Footer */
.footer {
    
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FCD34D;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .casino-item {
        gap: 15px;
        padding: 15px;
    }
    
    .casino-logo {
       
        font-size: 0.8rem;
    }
    
    .casino-score {
        font-size: 1.8rem;
        min-width: 70px;
    }
    
    .btn-play {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(107, 70, 193, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-inner {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .casino-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .casino-rank {
        order: -1;
    }
    
    .casino-logo {
        order: 1;
        
        margin: 0 auto;
        font-size: 1rem;
    }
    
    .casino-info {
        order: 2;
    }
    
    .casino-description {
        max-width: 100%;
        text-align: center;
    }
    
    .casino-score {
        order: 1;
        font-size: 2.5rem;
    }
    
    .casino-action {
        order: 3;
        width: 100%;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
    }
    
    .org-logos {
        gap: 20px;
    }
    
    .org-logo {
        height: 50px;
        max-width: 100px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie-settings,
    .btn-cookie-accept {
        width: 100%;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .casinos {
        padding: 40px 0;
    }
    
    .casino-item {
        padding: 20px 15px;
    }
    
    .casino-logo {
       
        font-size: 0.9rem;
    }
    
    .casino-description {
        font-size: 0.65rem;
        max-width: 100%;
    }
    
    .casino-deposit {
        font-size: 0.6rem;
    }
    
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .responsible {
        padding: 40px 0;
    }
    
    .responsible-title {
        font-size: 1.7rem;
    }
    
    .age-restriction {
        padding: 20px;
    }
    
    .age-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .org-logos {
        gap: 15px;
    }
    
    .org-logo {
        height: 40px;
        max-width: 80px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-item {
    animation: fadeInUp 0.6s ease forwards;
}

.casino-item:nth-child(1) { animation-delay: 0.1s; }
.casino-item:nth-child(2) { animation-delay: 0.2s; }
.casino-item:nth-child(3) { animation-delay: 0.3s; }
.casino-item:nth-child(4) { animation-delay: 0.4s; }
.casino-item:nth-child(5) { animation-delay: 0.5s; }

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .casino-item {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .casino-item.animate {
        animation: fadeInUp 0.6s ease forwards;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #4C1D95;
}

::-webkit-scrollbar-thumb {
    background: #8B5CF6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A78BFA;
}

              .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;
                }

                .accent {
                  text-align: center;
                  margin-bottom: 16px;
                  display: block;
                  color: #FF4C4C;
                }