@font-face {
    font-family: 'Fredoka';
    font-display: swap;
    src: url('../whLot-fonts/whLot-fredoka.woff2') format("woff2");
}

/* ====================
           VARIABLES & RESET
           ==================== */
:root {
    --c-dark: #161616;
    --c-pink: #F263FD;
    --c-blue: #53DCFC;
    --c-green: #D3EA52;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Fredoka;
    color: var(--c-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.exp-grid img {
    width: 100%;
}

.s-gallery img {
    width: 100%;
}

/* ====================
           TYPOGRAPHY RULES
           ==================== */
.font-medium {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.font-bold {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

.font-regular {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

.text-pink {
    color: var(--c-pink);
}

.subtitle {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ====================
           LAYOUT RULES
           ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

section {
    padding: 80px 16px;
}

.placeholder-img {
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

/* ====================
           HEADER
           ==================== */
.header {
    padding: 20px 16px;
    background: #FFFFFF;
    position: relative;
    z-index: 100;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--c-pink);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.main-nav a {
    padding: 4px 10px;
    color: var(--c-pink);
    font-family: Fredoka;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    text-decoration: underline;
    text-transform: uppercase;
}

.burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--c-pink);
}

/* ====================
           SECTIONS
           ==================== */

/* 1. HERO */
.s-hero {
    display: flex;
    width: 100%;
    /* Убираем стандартные паддинги секции, чтобы картинки прилегали к краям */
    padding: 0;
    min-height: 500px;
    /* Задайте желаемую высоту секции */
    position: relative;
    justify-content: center;
}

.hero-half {
    flex: 1;
    /* Делит экран ровно 50/50 */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Левая картинка */
.hero-left-bg {
    background-image: url('../whLot-img/whLot-hero.webp');
    display: flex;
    max-width: 720px;
    height: 613px;
    justify-content: center;
    align-items: flex-end;
    /* Выравниваем кнопку по низу */
    padding-bottom: 50px;
    /* Отступ кнопки снизу */
}

/* Правая картинка */
.hero-right-bg {
    background-image: url('../whLot-img/whLot-herophoto.webp');
    display: flex;
    justify-content: flex-end;
    /* Плашка справа */
    align-items: flex-end;
    max-width: 720px;
}

.hero-left-content {
    width: 100%;
    max-width: 600px;
    /* Половина от 1200px контейнера */
    display: flex;
    justify-content: center;
    /* Кнопка по центру левой половины */
}

.btn-pink {
    background: radial-gradient(50% 50% at 50% 50%, #FBC7FF 0%, #F263FD 100%);
    color: #FFFFFF;
    padding: 16px 10px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 520px;
    text-align: center;
}

.hero-overlay {
    background: var(--c-blue);
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Смещаем плашку немного влево и вверх, чтобы она нависала как на макете */
    transform: translate(-20px, -20px);
}

/* Мобильный адаптив для Hero */
@media (max-width: 900px) {
    .s-hero {
        flex-direction: column;
        /* Картинки друг под другом на телефоне */
        min-height: auto;
    }

    .hero-half {
        width: 100%;
        min-height: 400px;
        /* Высота каждой картинки на мобилке */
    }

    .hero-right-bg {
        justify-content: center;
        /* Центрируем плашку на телефоне */
        align-items: center;
    }

    .hero-overlay {
        transform: translate(0, 0);
        /* Убираем смещение на телефоне */
    }
}

/* 2. ABOUT */
.s-about .font-bold {
    margin-bottom: 20px;
}

.s-about .font-regular {
    margin-bottom: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-pill {
    border: 3px solid var(--c-pink);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-pink);
}

/* 3. EXPERIENCE */
.s-experience .font-bold {
    margin-bottom: 20px;
}

.s-experience .font-regular {
    margin-bottom: 30px;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.exp-card {
    border: 3px solid var(--c-blue);
    border-radius: 20px;
    padding: 20px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exp-card.span-4 {
    grid-column: span 4;
}

.exp-card.span-8 {
    grid-column: span 8;
    background: var(--c-blue);
    border: none;
}

.exp-card h2 {
    font-family: Fredoka;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    text-transform: uppercase;
}

/* 4. LOCATION (MAP) */
.location-wrapper {
    background-color: var(--c-green);
    border-radius: 20px;
    padding: 20px;
}

.location-wrapper h2 {
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    height: 330px;
    margin: 10px 0;
    border-radius: 16px;
    overflow: hidden;
    /* Чтобы убрать рамки у iframe внутри */
    border: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-wrapper a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

/* 5. GALLERY */
.s-gallery {
    background-color: var(--c-blue);
}

.s-gallery .font-bold {
    margin-bottom: 20px;
}

.s-gallery .font-regular {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

/* 6. FAQ (Accordion UL) */

.s-faq {
    padding: 40px 16px;
}

.s-faq .font-regular {
    margin-bottom: 30px;
}


.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border: 3px solid var(--c-pink);
    border-radius: 20px;
    margin-bottom: 10px;
    color: var(--c-pink);
    overflow: hidden;
    /* Скрываем вылезающий контент при анимации */
}

.active .faq-question {
    padding: 20px 20px 10px 20px;
}

.faq-title {
    padding-bottom: 20px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    color: var(--c-pink);
    outline: none;
}

.faq-question span {
    font-size: 16px;
    margin: 0;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    opacity: 0;
}

/* Состояние открытого аккордеона */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Достаточно большое число для текста */
    padding-bottom: 20px;
    opacity: 1;
}

/* ====================
FOOTER====================*/

.footer {
    background-color: var(--c-blue);
    padding: 40px 16px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.f-col h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.f-col ul {
    list-style: none;
}


.f-col a {
    color: var(--c-dark);
    text-decoration: none;
    font-weight: 500;
}

/* Contacts column details */
.f-col {
    display: flex;
    flex-direction: column;
}

.f-contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 459px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-tags-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-con-bl-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-form {
    width: 100%;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--c-pink);
}

.tags-text {
    font-size: 13px;
}

/* Form column details */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-wrap {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    /* Место под кнопку справа */
    border-radius: 40px;
    border: none;
    font-family: inherit;
    outline: none;
}

.btn-submit-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-full {
    width: 100%;
    font-size: 14px;
    box-shadow: none;
    /* Убираем свечение для кнопки футера */
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ====================
           RESPONSIVE (MOBILE)
           ==================== */
@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .s-hero .container {
        justify-content: center;
        /* На телефоне кнопка по центру */
        align-items: center;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

    .exp-card.span-4,
    .exp-card.span-5,
    .exp-card.span-7 {
        grid-column: span 12;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-wrapper {
        padding: 20px;
    }
}





/* ====================
   NEW SECTIONS: PARTNERS, ARTICLES, DISCLAIMER
   ==================== */

/* --- Section: TOP PARTNERS --- */
.s-partners {
    padding: 40px 16px;
    background-color: #FFFFFF;
}

.s-partners .font-regular {
    margin-top: 20px;
    margin-bottom: 30px;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-card {
    border: 3px solid var(--c-blue);
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #fff;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-badge {
    position: absolute;
    top: -2px;
    left: 0px;
    background-color: var(--c-green);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-dark);
}

.partner-logo {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    /* Ограничиваем высоту логотипов */
}

/* Цвет для текста бонусов и звезд (взял цвет с макета, так как --c-green слишком светлый для белого фона) */
.text-lime {
    color: #A5D936;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    align-items: flex-start;
}

.partner-info h2 {
    font-family: Fredoka;
    font-weight: 600;
    font-style: Bold;
    font-size: 20px;
    text-transform: uppercase;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    height: 120px;
}

.partner-info p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.partner-rating {
    text-align: center;
    width: 100%;
    max-width: 122px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.partner-rating .score {
    font-family: Fredoka;
    font-weight: 600;
    font-style: Bold;
    font-size: 42px;
    text-align: center;
}

.partner-rating .stars {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.partner-rating .licence {
    font-family: Fredoka;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    text-align: center;
}

.partner-action {
    width: 100%;
    max-width: 263px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.partner-action .btn-pink {
    width: 100%;
    padding: 16px 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
}



/* --- Section: ARTICLES & LOGOS --- */
.s-articles {
    padding: 40px 16px;
    background-color: #FFFFFF;
}

.s-articles .font-bold {
    margin-bottom: 10px;
    font-family: Fredoka;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    text-transform: uppercase;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-content h2 {
    font-family: Fredoka;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1;
}

.article-content p {
    font-size: 16px;
}

.article-disclaimer {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

.regulatory-logos {
    border: 3px solid var(--c-pink);
    border-radius: 20px;
    padding: 20px 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.regulatory-logos img {
    max-height: 40px;
    /* Высота логотипов регуляторов */
    object-fit: contain;
}

/* --- Section: DISCLAIMER --- */
.s-disclaimer {
    padding: 40px 16px;
}

.disclaimer-box {
    background-color: var(--c-green);
    border-radius: 20px;
    padding: 40px;
}

.disclaimer-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.5;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 900px) {


    .partner-logo {
        justify-content: center;
    }

    .partner-info p {
        justify-content: center;
    }

    .partner-action {
        width: 100%;
        max-width: 320px;
    }

    .regulatory-logos {
        justify-content: center;
    }
}



/* ====================
   NEW SECTIONS: TOP PICK & PLAY SMART
   ==================== */

/* --- Section: TOP PICK --- */
.s-top-pick {
    background-color: #FFFFFF;
}

.s-top-pick .font-bold {
    margin-bottom: 25px;
}

.top-pick-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Отступы между абзацами */
}

.top-pick-image {
    margin-top: 30px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.top-pick-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Section: PLAY SMART --- */
.s-play-smart {
    background-color: #FFFFFF;
}

.s-play-smart .font-bold {
    margin-bottom: 25px;
}

.play-smart-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Отступы между абзацами */
}

.play-smart-content h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    /* Дополнительный отступ сверху для заголовков */
    margin-bottom: 5px;
}

/* Блок с логотипами регуляторов (розовая рамка) */
.regulatory-logos {
    border: 3px solid var(--c-pink);
    border-radius: 20px;
    padding: 20px 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.regulatory-logos img {
    max-height: 40px;
    object-fit: contain;
}

/* --- Section: DISCLAIMER --- */
.s-disclaimer {
    padding-bottom: 80px;
    /* Отступ перед футером */
    background-color: #FFFFFF;
}

.disclaimer-box {
    background-color: var(--c-green);
    border-radius: 20px;
    padding: 30px 40px;
}

.disclaimer-box h2 {
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.5;
}

/* Адаптив для новых секций на мобильных */
@media (max-width: 900px) {
    .regulatory-logos {
        padding: 20px;
    }

    .disclaimer-box {
        padding: 20px;
    }
}

/* --- Контейнер самой игры (адаптивный 16:9) --- */
.block-game {
    position: relative;
    width: 100%;
    /* Ограничитель, чтобы игра не становилась гигантской на больших экранах */
    margin: 0 auto;
    padding-bottom: 56.25%;
    /* Пропорция 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    /* Легкая тень, чтобы выделить игру */
}

.block-game iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Убираем стандартную рамку iframe */
}

.photobooth-promo-section {
    display: none;
}


@media (max-width: 1160px) {
    .s-hero {
        display: none;
    }

    .photobooth-promo-section {
        display: block;
    }

    /* ========================
       СЕКЦИЯ PROMO PHOTOBOOTH
       ======================== */

    /* Основной контейнер с лаймовым фоном */
    .photobooth-promo-section {
        background-color: #C2E044;
        /* Лаймовый цвет фона */
        padding: 40px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0 auto;
        font-family: 'Inter', Arial, sans-serif;
        /* Подставьте свой шрифт, если есть */
    }


    /* 3. Голубая карточка */
    .promo-info-card {
        background-color: #53DCFC;
        /* Голубой цвет */
        width: 100%;
        border-radius: 16px;
        padding: 12px;
        gap: 10px;
        text-align: center;
        color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .promo-info-card .info-title {
        font-family: Fredoka;
        font-weight: 600;
        font-style: Bold;
        font-size: 16px;
        text-align: center;
        text-transform: uppercase;
    }

    .promo-info-card .info-date {
        font-family: Fredoka;
        font-weight: 600;
        font-style: Bold;
        font-size: 16px;
        text-align: center;
        text-transform: uppercase;
    }

    .promo-info-card .info-location {
        font-family: Fredoka;
        font-weight: 600;
        font-style: Bold Italic;
        font-size: 14px;
        text-align: center;
    }

    /* 4. Розовая кнопка */
    .promo-action-btn {
        width: 100%;
        background: radial-gradient(50% 50% at 50% 50%, #FBC7FF 0%, #F263FD 100%);
        color: #FFFFFF;
        text-transform: uppercase;
        font-family: Fredoka;
        font-weight: 600;
        font-style: Bold;
        font-size: 16px;
        text-transform: uppercase;
        padding: 16px;
        border-radius: 100px;
        /* Идеально круглые бока (капсула) */
        border: none;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 51, 255, 0.3);
        /* Легкое свечение */
    }

    .promo-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 51, 255, 0.5);
    }

    .promo-action-btn:active {
        transform: translateY(1px);
    }

}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .exp-card.span-8 {
        grid-column: span 12;
        background: var(--c-blue);
        border: none;
    }

    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .f-contacts {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        max-width: 459px;
        gap: 20px;
    }

}

.f-form-mob {
    display: none;
}

@media (max-width: 600px) {
    .logo img {
        width: 252px;
        height: 20px;
    }

    section {
        padding: 40px 16px;
    }



    .gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        /* Запрещаем перенос на новые строки */
        overflow-x: auto;
        /* Включаем горизонтальный скролл */
        gap: 15px;
        /* Расстояние между фотографиями */
        list-style: none;
        margin: 0;
        padding: 10px 0;
        /* Небольшой отступ сверху и снизу */

        /* Плавная прокрутка на iOS (iPhone) */
        -webkit-overflow-scrolling: touch;

        /* Прячем стандартный страшный ползунок скроллбара */
        scrollbar-width: none;
        /* Для Firefox */
        -ms-overflow-style: none;
        /* Для IE/Edge */
    }

    /* Прячем скроллбар для Chrome, Safari, Opera */
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-grid li {
        /* Жестко фиксируем размер карточек (чтобы они не сплющивались) */
        flex: 0 0 150px;
        /* Ширина карточки (подгоните под себя, если нужно больше/меньше) */
        height: 150px;
        /* Высота карточки (делаем квадратной) */
    }

    .gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Заполняет квадрат, обрезая лишнее, чтобы фото не искажалось */
        border-radius: 16px;
        /* Сильное скругление углов, как на скриншоте */
        display: block;
    }

    .f-form {
        display: none;
    }

    .f-form-mob {
        display: flex;
        width: 100%;
    }

    .about-pill {
        border: 3px solid var(--c-pink);
        border-radius: 20px;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--c-pink);
        flex-direction: column;
    }

}


.offers-grid {
    display: none;
}

@media (max-width: 600px) {

    .offers-grid {
        display: flex;
    }

    .partner-list {
        display: none;
    }

    /* ========================
   ОБНОВЛЕННЫЕ КАРТОЧКИ (МОБИЛЬНЫЙ ВИД КАК НА ФОТО)
   ======================== */

    .casino-offers-section {
        padding: 20px 10px;
        background-color: #FFFFFF;
        font-family: 'Fredoka', sans-serif;
        /* Ваш шрифт */
    }

    .offers-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center;
    }

    /* САМА КАРТОЧКА */
    .offer-box {
        display: flex;
        position: relative;
        border: 3px solid #3DD1FF;
        border-radius: 20px;
        background-color: #FFFFFF;
        padding: 0px 10px 12px 10px;
        justify-content: center;
        max-width: 330px;
    }

    /* ЛЕЙБЛ СЛЕВА СВЕРХУ (Лаймовый) */
    .offer-badge {
        position: absolute;
        top: -3px;
        left: -3px;
        /* Накладывается на рамку */
        background-color: #C3DF39;
        color: #000000;
        font-size: 12px;
        font-weight: 500;
        padding: 6px 10px;
        border-radius: 100px;
        z-index: 1;
    }

    /* ЛИЦЕНЗИЯ СПРАВА СВЕРХУ */
    .offer-license {
        position: absolute;
        top: -12px;
        right: 0px;
        background-color: #FFFFFF;
        /* Перекрывает голубую линию */
        font-size: 8px;
        color: #333333;
    }

    /* ТЕЛО КАРТОЧКИ (Flex, делящий ее на левую и правую части) */
    .offer-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    /* ЛЕВАЯ КОЛОНКА (Логотип и рейтинг) */
    .offer-left {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
    }

    .offer-brand img {
        width: 100%;
        max-width: 126px;
        max-height: 45px;
    }

    .offer-score-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .offer-score-num {
        font-size: 28px;
        font-weight: 700;
        color: #000000;
        line-height: 1;
    }

    .offer-stars {
        display: flex;
        gap: 2px;
    }

    .offer-stars img {
        width: 12px;
        height: 12px;
    }

    /* ПРАВАЯ КОЛОНКА (Текст, Кнопка, Платежи) */
    .offer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        /* Все прижато к правому краю */
        width: 60%;
        text-align: right;
    }

    .offer-players {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        font-weight: 600;
        color: #000000;
        margin-bottom: 5px;
    }

    .offer-players img {
        width: 16px;
        height: 16px;
    }

    .offer-bonus-title {
        font-size: 12px;
        font-weight: 700;
        color: #A5D936;
        /* Лаймовый текст */
        text-transform: uppercase;
        margin: 0 0 8px 0;
    }

    /* РОЗОВАЯ КНОПКА */
    .offer-btn {
        width: 100%;
        max-width: 180px;
        background: radial-gradient(50% 50% at 50% 50%, #FBC7FF 0%, #F263FD 100%);
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 10px 20px;
        border-radius: 100px;
        text-decoration: none;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .offer-payments {
        display: flex;
        gap: 13px;
        justify-content: flex-end;
    }

    .offer-payments img {
        width: 20px;
        /* Размер иконок платежек */
        height: 20px;
    }

}

.regulatory-logos a {
    display: flex;
}

.regulatory-logos img {
    width: 100%;
}



/* ========================
   COOKIE POLICY SECTION
   ======================== */

.cookie-policy-section {
    background-color: #FFFFFF;
    color: #111111;
    /* Темно-серый/почти черный цвет текста */
    padding: 40px 16px;
    font-family: Fredoka;
}


/* Главный заголовок */
.policy-title {
    font-family: Fredoka;
    /* Широкий жирный шрифт */
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Текстовые абзацы */
.policy-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    /* Отступ между блоками текста */
    letter-spacing: 0.2px;
}

/* Класс для отмены нижнего отступа перед списками */
.policy-content p.no-margin-bottom {
    margin-bottom: 5px;
}

/* Списки с точками */
.policy-list {
    margin: 0 0 25px 0;
    padding-left: 20px;
    /* Отступ для точек */
}

.policy-list li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 4px;
    list-style-type: disc;
    /* Стандартные черные точки */
}

/* Подчеркнутые ссылки для браузеров */
.browser-links li a {
    color: #111111;
    text-decoration: underline;
    /* Подчеркивание как на макете */
    text-underline-offset: 2px;
    /* Чуть отодвигаем линию от текста */
}

.browser-links li a:hover {
    text-decoration: none;
    color: #555555;
}

/* ========================
   АДАПТИВ (ДЛЯ ТЕЛЕФОНОВ)
   ======================== */
@media (max-width: 768px) {
    .cookie-policy-section {
        padding: 40px 15px;
    }

    .policy-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .policy-content p,
    .policy-list li {
        font-size: 14px;
        /* Чуть уменьшаем шрифт для мобилок */
    }
}