* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #F9D93E;
    --primary-orange: #FF9A56;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #888888;
    --white: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-light: #fafafa;
    --red: #EF4444;
    --border-light: #e5e5e5;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.popup-active {
    overflow: hidden;
}

.container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== POPUP ===== */
.popup-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.popup-content {
    background: white;
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 540px;
    width: 90%;
    text-align: center;
}

.popup-icon {
    margin-bottom: 30px;
}

.popup-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.popup-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.5;
}

.popup-buttons {
    display: flex;
    gap: 16px;
}

.btn-popup-confirm,
.btn-popup-decline {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-popup-confirm {
    background: var(--red);
    color: white;
}

.btn-popup-confirm:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-popup-decline {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-popup-decline:hover {
    background: #f0ca2e;
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    padding-bottom: 6px;
}

.logo {
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-casino {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-best {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 2px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link.active {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.nav-link:hover {
    background: var(--bg-gray);
}

.nav-link.active:hover {
    background: var(--primary-yellow);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(90deg, #FF9A56 0%, #FFD93E 100%);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    background: url(/assets/bg11.png);
    background-size: cover;
    min-height: 400px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    maxmax-width: 560px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;

    color: #FFF;
font-family: Inter;
font-size: 79.033px;
font-style: normal;
font-weight: 700;
line-height: 85.984px; /* 108.795% */
max-width: 732px;
}

.hero-description {
    font-size: 17px;
    color: white;
    line-height: 1.6;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CASINOS SECTION ===== */
.casinos-section {
    padding: 70px 0;
    background: #fff;
    padding-top: 42px;
    padding-bottom: 34px;

    
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== CASINO CARDS - FINAL VERSION ===== */
.casino-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

/* Header Section */
.casino-header {
    position: relative;
    padding: 60px 40px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 194px;
}

.casino-header1{
    background: url(/assets/game/grand.png);
    background-size: cover;
}
.casino-header2{
    background: url(/assets/game/betano.png);
    background-size: cover;
}
.casino-header3{
    background: url(/assets/game/groswenor.png);
    background-size: cover;
}
.casino-header4{
    background: url(/assets/game/karamba.png);
    background-size: cover;
}
.casino-header5{
    background: url(/assets/game/casino.png);
    background-size: cover;
}
.casino-header6{
    background: url(/assets/game/games.png);
    background-size: cover;
}

.casino-logo {
    width: 100%;
    height: 100%;
    width: auto;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Flag with checkmark - Top Left */
.casino-flag-top {
    position: absolute;
    left: 28px;
    bottom: 68px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    z-index: 3;
}

.flag-icon-top {
    width: 52px;
    height: 38px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    margin-left: -8px;
    margin-top: -2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Badge - Bottom Left */
.casino-badge-bottom {
    position: absolute;
    left: 28px;
    bottom: 28px;
    background: white;
    padding: 0px 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.casino-badge-bottom svg {
    width: 14px;
    height: 14px;
    color: #666;
}

/* Rating - Bottom Right */
.casino-rating-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    background: white;
    padding: 6px 67px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: url(/assets/bg_white.svg);
    background-size: cover;


    z-index: 3;
}

.stars-rating {
    color: #FDB913;
    font-size: 19px;
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.rating-number {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);

    
}

/* Content Section */
.casino-content {
    background: white;
    padding: 36px 32px 32px;
  
}

.casino-name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;

    color: #000;
text-align: center;
font-family: Inter;
font-size: 24.984px;
font-style: normal;
font-weight: 600;
line-height: 31.451px; /* 125.882% */
margin-bottom: 0;

}

.casino-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.65;
    text-align: center;
    margin: 0;
}

/* Bonus Section */
.casino-bonus-wrapper {
    background: #F8F8F8;
    padding: 0px 0px;
    background: #F7F7F7;
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25) inset;
}

.casino-bonus-amount {
   
    padding: 22px 28px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);

    padding-bottom: 10px;


    
}

/* Action Section */
.casino-action {
    background: white;
    padding: 32px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
  
    
}

.btn-visit-casino {
    width: 100%;
    padding: 20px 32px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(249, 217, 62, 0.2);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    max-width: 234px;
    margin-bottom: 10px ;
}
.btn-verif-casino{
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    color: rgb(14 165 233);
}

.btn-visit-casino:hover {
    background: #f0ca2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 217, 62, 0.35);
}

.casino-terms {
    font-size: 12px;
    color: #999;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.casino-terms a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
}

.casino-terms a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .casino-header {
        padding: 50px 30px 80px;
        min-height: 200px;
    }

    .casino-logo {
        max-width: 220px;
        max-height: 110px;
    }

    .casino-flag-top {
        left: 20px;
        top: 20px;
    }

    .flag-icon-top {
        width: 44px;
        height: 32px;
    }

    .casino-badge-bottom {
        left: 20px;
        bottom: 20px;
        padding: 8px 14px;
        font-size: 13px;
    }

   

    .stars-rating {
        font-size: 16px;
    }

    .rating-number {
        font-size: 15px;
    }

    .casino-content {
        padding: 28px 24px 24px;
    }

    .casino-name {
        font-size: 26px;
    }

    .casino-text {
        font-size: 15px;
    }

    .casino-bonus-wrapper {
        padding: 24px;
    }

    .casino-bonus-amount {
        font-size: 18px;
        padding: 18px 20px;
    }

    .casino-action {
        padding: 24px;
    }

    .btn-visit-casino {
        padding: 18px 28px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .casino-header {
        padding: 40px 20px 70px;
        min-height: 180px;
    }

    .casino-logo {
        max-width: 180px;
        max-height: 90px;
    }

    .casino-flag-top {
        left: 16px;
        top: 16px;
    }

    .flag-icon-top {
        width: 40px;
        height: 28px;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        margin-left: -7px;
    }

    .casino-badge-bottom {
        left: 16px;
        bottom: 16px;
        padding: 7px 12px;
        font-size: 12px;
    }

  

    .stars-rating {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .rating-number {
        font-size: 14px;
    }

    .casino-name {
        font-size: 24px;
    }

    .casino-text {
        font-size: 14px;
    }

    .casino-bonus-amount {
        font-size: 17px;
        padding: 16px 18px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 70px 0;

    background: #F7F7F7;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
padding-top: 42px;
padding-bottom: 47px;
}

.affiliate-notice {
    background: var(--primary-yellow);
    padding: 28px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;

    border-radius: 35px;
background: radial-gradient(103.55% 168.21% at 50% 50%, #FECB0D 0%, #F9DE31 100%);
}

.affiliate-notice p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.affiliate-notice p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    color: var(--text-dark);

    color: #000;
text-align: center;
font-family: Inter;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 85.984px; /* 214.961% */
}

.section-subtitle {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}

.value-item {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Manager Section */
.manager-section {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: #fff;
    padding: 37px;
    border-radius: 20px;
    margin-bottom: 70px;
    position: relative;
    margin-bottom: 0;
}

.manager-photo {
    flex-shrink: 0;
    width: 317px;
    height: 317px;
    border-radius: 16px;
    overflow: hidden;
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-content {
    flex: 1;
    position: relative;
    padding-top: 20px;
    margin-top: 20px;
}

.quote-mark-start {
    position: absolute;
    top: -65px;
    left: -10px;
    font-size: 120px;
    color: var(--primary-yellow);
    line-height: 1;
    font-family: Georgia, serif;

    color: #FECB0D;
font-family: Inter;
font-size: 127.636px;
font-style: normal;
font-weight: 400;
line-height: 160px; /* 125.356% */
}

.quote-mark-end {
    position: absolute;
    bottom: -130px;
    right: 20px;
    font-size: 120px;
    color: var(--primary-yellow);
    line-height: 1;
    font-family: Georgia, serif;
    color: #FECB0D;
font-family: Inter;
font-size: 127.636px;
font-style: normal;
font-weight: 400;
line-height: 160px; /* 125.356% */
}

.manager-info {
    position: relative;
    z-index: 1;
    padding-left: 30px;
    margin-top: 40px;
}

.manager-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.manager-position {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.manager-quote {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.advantage-item {
    display: flex;
    gap: 24px;
    background: var(--bg-light);
    padding: 32px 28px;
    border-radius: 16px;
    border-radius: 35px;
background: #FFF;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.advantage-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.advantage-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== RESPONSIBLE GAMBLING SECTION ===== */
.responsible-section {
    padding: 70px 0;
    background: var(--bg-light);
    background: #F7F7F7;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.rg-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--red);
    margin-bottom: 60px;

    border-radius: 35px;
border: 2px solid #F01A1A;
background: #FFF;
}

.rg-icon {
    width: 161.777px;
    height: 95.03px;
    flex-shrink: 0;
    border-radius: 11.313px;
background: #F01A1A;
display: flex;
align-items: center;
justify-content: center;
}
.rg-icon span{
    color: #FFF;
    font-family: Arial;
    font-size: 63.353px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.rg-content {
    flex: 1;
}

.rg-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--red);
}

.rg-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.btn-learn {
    flex-shrink: 0;
    padding: 16px 40px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    text-decoration: none;
}

.btn-learn:hover {
    background: #f0ca2e;
    transform: translateY(-2px);
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.support-item {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
}

.support-icon img {
    width: 100%;
    height: 100%;
}

.support-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.support-detail {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.5;
}

.support-detail:last-child {
    margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 70px 0;
    background: #F7F7F7;
    padding-top: 0;
}

.contact-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;

    border-radius: 35px;
background: #FFF;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.contact-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 633px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 80px;
}

.detail-value {
    color: var(--text-gray);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 580px;
}

.form-input,
.form-textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: white;

    border-radius: 100px;
background: #F7F7F7;
}
.form-textarea {
    border-radius: 35px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    padding: 16px 24px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border-radius: 1228.464px;
background: #FECB0D;
max-width: 365px;
width: 100%;
margin: 0 auto;
}

.btn-send:hover {
    background: #f0ca2e;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #FFF;
    padding: 50px 0 30px;
 
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text-gray);
}

.footer-advertising {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
}

.footer-ad-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.footer-ad-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
 

    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 46px;
    }

    .manager-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .manager-info {
        padding-left: 0;
    }

    .quote-mark-start {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        gap: 0;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 14px 20px;
        border-radius: 8px;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 34px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .rg-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .contact-wrapper {
        padding: 40px 30px;
    }

    .popup-content {
        padding: 40px 30px;
    }

    .popup-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .casinos-section,
    .about-section,
    .responsible-section,
    .contact-section {
        padding: 50px 0;
    }

    .casino-header {
        padding: 40px 20px 30px;
        min-height: 150px;
    }

    .casino-body {
        padding: 20px;
    }

    .manager-section {
        padding: 30px 20px;
    }

    .manager-photo {
        width: 160px;
        height: 160px;
    }

    .quote-mark-start,
    .quote-mark-end {
        font-size: 80px;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    .footer-logos {
        gap: 24px;
    }

    .footer-logo {
        height: 40px;
    }

    .popup-content {
        padding: 30px 24px;
    }

    .popup-content h2 {
        font-size: 28px;
    }
}






/* Bonus Terms Tooltip - Bottom Version */
.bonus-terms-trigger {
    position: relative;
    display: inline-block;
    display: flex;
    justify-content: center;
    padding-bottom: 22px;
}

.terms-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #666;
}

.bonus-terms-tooltip {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    width: 420px;
    max-width: 90vw;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.bonus-terms-trigger:hover .bonus-terms-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + -10px);
}

.tooltip-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #2a2a2a;
}

.bonus-terms-tooltip p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .bonus-terms-tooltip {
        width: 340px;
        padding: 18px 20px;
    }

    .bonus-terms-tooltip p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .bonus-terms-tooltip {
        width: 300px;
        left: auto;
        right: -10px;
        transform: none;
        padding: 16px 18px;
    }

    .tooltip-arrow {
        left: auto;
        right: 30px;
        transform: rotate(45deg);
    }

    .bonus-terms-tooltip p {
        font-size: 11px;
    }
}

/* Mobile tooltip active state */
@media (max-width: 768px) {
    .bonus-terms-trigger.active .bonus-terms-tooltip {
        opacity: 1;
        visibility: visible;
        top: calc(100% + 20px);
    }
}

.about-section-duble{
    background: #FFF;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);

}

@media (max-width: 768px) {
    .casino-header{
        min-height: 150px;
    }
    .advantage-icon{
        margin: 0 auto;
    }
    .contact-form{
        width: 100%;
    }
    .hero{
        background-size: cover;
        background-position: center;
    }
    .hero-title{
        line-height: 32px ;
        text-align: left;
    }
    .hero-description{
        text-align: left;
    }
}




/* ===== RESPONSIBLE GAMBLING DETAILS SECTION ===== */
.rg-details-section {
    padding: 80px 0;
    background: #F7F7F7;
}

.rg-main-title {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.rg-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.rg-block {
    background: var(--bg-light);
    padding: 32px 40px;
    border-radius: 16px;
    margin-bottom: 24px;

    border-radius: 35px;
background: #FFF;
}

.rg-block:last-child {
    margin-bottom: 0;
}

.rg-block-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.rg-block-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.rg-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.rg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rg-list li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 24px;
    position: relative;
}

.rg-list li:last-child {
    margin-bottom: 0;
}

.rg-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
}

.rg-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.rg-note {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .rg-details-section {
        padding: 60px 0;
    }

    .rg-main-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .rg-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .rg-block {
        padding: 24px 28px;
        margin-bottom: 20px;
    }

    .rg-block-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .rg-block-subtitle {
        font-size: 15px;
    }

    .rg-text,
    .rg-list li,
    .rg-note {
        font-size: 14px;
    }

    .rg-list li {
        padding-left: 20px;
    }

    .rg-list li::before {
        left: 6px;
    }
}

@media (max-width: 480px) {
    .rg-details-section {
        padding: 50px 0;
    }

    .rg-main-title {
        font-size: 28px;
    }

    .rg-intro {
        font-size: 14px;
    }

    .rg-block {
        padding: 20px 24px;
    }

    .rg-block-title {
        font-size: 18px;
    }

    .rg-list li {
        padding-left: 18px;
        margin-bottom: 10px;
    }
}




/* ===== RATING CRITERIA SECTION ===== */
.rating-criteria-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.criteria-main-title {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.criteria-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.criterion-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;

    border-radius: 35px;
background: #FFF;
}

.criterion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.criterion-header {
    display: flex;
    
    gap: 16px;
    margin-bottom: 16px;
}

.criterion-number {
    width: 48px;
    height: 48px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    flex-shrink: 0;

    border-radius: 1000px;
background: #FDCE13;
color: #fff;
}

.criterion-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.criterion-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Our Approach Banner */
.approach-banner {
    background: var(--primary-yellow);
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;

    border-radius: 35px;
background: #FDCE13;
}

.approach-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);

    color: #000;
text-align: center;
font-family: Inter;
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 33px; /* 132% */
}

.approach-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .criteria-grid {
        gap: 20px;
    }

    .criterion-item {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .rating-criteria-section {
        padding: 60px 0;
    }

    .criteria-main-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .criteria-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .criterion-item {
        padding: 24px;
    }

    .criterion-number {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .criterion-title {
        font-size: 18px;
    }

    .criterion-text {
        font-size: 14px;
    }

    .approach-banner {
        padding: 32px 30px;
    }

    .approach-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .approach-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .rating-criteria-section {
        padding: 50px 0;
    }

    .criteria-main-title {
        font-size: 28px;
    }

    .criteria-intro {
        font-size: 14px;
    }

    .criterion-item {
        padding: 20px;
    }

    .criterion-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .criterion-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .criterion-title {
        font-size: 17px;
    }

    .approach-banner {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .approach-title {
        font-size: 22px;
    }

    .approach-text {
        font-size: 14px;
    }
}



/* ===== PRIVACY POLICY SECTION ===== */
.privacy-policy-section {
    padding: 80px 0;
    background: #F7F7F7;
}

.privacy-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.privacy-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.privacy-intro p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-block {
    background: var(--bg-light);
    padding: 36px 40px;
    border-radius: 16px;
    margin-bottom: 24px;
    border-radius: 35px;
background: #FFF;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.privacy-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.privacy-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-text a {
    color: #4A90E2;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.privacy-list li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
}

/* Contact Section */
.privacy-contact {
    background: white;
    border: 2px solid var(--border-light);
}

.privacy-contact-info {
    margin-top: 20px;
}

.contact-email,
.contact-address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.contact-email:last-child,
.contact-address:last-child {
    margin-bottom: 0;
}

.contact-email svg,
.contact-address svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 60px 0;
    }

    .privacy-main-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .privacy-intro {
        margin-bottom: 40px;
    }

    .privacy-intro p {
        font-size: 15px;
    }

    .privacy-block {
        padding: 28px 28px;
        margin-bottom: 20px;
    }

    .privacy-section-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .privacy-subtitle {
        font-size: 17px;
        margin-top: 20px;
    }

    .privacy-text {
        font-size: 14px;
    }

    .privacy-list li {
        font-size: 14px;
        padding-left: 20px;
    }

    .contact-email,
    .contact-address {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 50px 0;
    }

    .privacy-main-title {
        font-size: 30px;
    }

    .privacy-intro p {
        font-size: 14px;
    }

    .privacy-block {
        padding: 24px 20px;
    }

    .privacy-section-title {
        font-size: 20px;
    }

    .privacy-subtitle {
        font-size: 16px;
    }

    .privacy-text {
        font-size: 13px;
    }

    .privacy-list li {
        font-size: 13px;
        padding-left: 18px;
    }

    .contact-email,
    .contact-address {
        font-size: 14px;
        gap: 10px;
    }

    .contact-email svg,
    .contact-address svg {
        width: 18px;
        height: 18px;
    }
}


/* ===== TERMS & CONDITIONS SECTION ===== */
.terms-section {
    padding: 80px 0;
    background: #F7F7F7;
}

.terms-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.terms-block {
    background: var(--bg-light);
    padding: 32px 40px;
    border-radius: 16px;
    margin-bottom: 20px;

    border-radius: 35px;
background: #FFF;
}

.terms-block:last-child {
    margin-bottom: 0;
}

.terms-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.terms-welcome {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.terms-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.terms-text:last-child {
    margin-bottom: 0;
}

.terms-important {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 16px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
}

.terms-sublist {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.terms-sublist li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.terms-sublist li::before {
    content: "◦";
    position: absolute;
    left: 6px;
    color: var(--text-gray);
    font-weight: 400;
    font-size: 16px;
}

.terms-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
    margin: 16px 0;
}

.terms-email svg {
    flex-shrink: 0;
}

/* Contact Section */
.terms-contact {
    background: white;
    border: 2px solid var(--border-light);
}

.terms-contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.6;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }

    .terms-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .terms-block {
        padding: 28px 24px;
        margin-bottom: 16px;
    }

    .terms-section-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .terms-text,
    .terms-list li,
    .terms-sublist li {
        font-size: 14px;
    }

    .terms-list li {
        padding-left: 20px;
    }

    .terms-email,
    .contact-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 50px 0;
    }

    .terms-main-title {
        font-size: 30px;
    }

    .terms-block {
        padding: 24px 20px;
    }

    .terms-section-title {
        font-size: 18px;
    }

    .terms-text,
    .terms-list li,
    .terms-sublist li {
        font-size: 13px;
    }

    .terms-list li {
        padding-left: 18px;
    }

    .terms-email,
    .contact-item {
        font-size: 13px;
        gap: 10px;
    }

    .terms-email svg,
    .contact-item svg {
        width: 18px;
        height: 18px;
    }
}