html,
body {
    margin: 0;
    padding: 0;
    font-family: "Play", sans-serif;
}

.hero_casino_r41 {
    background: radial-gradient(circle at 0% 0%, #edd175 0, #170202 55%, #170202 100%);
    color: #e5e7eb;
    padding: 70px 0 80px;
    font-family: "Play", sans-serif;
}

.hero_casino_r41__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

/* ЛЕВАЯ ЧАСТЬ */

.hero_casino_r41__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero_casino_r41__logo {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-size: 14px;
}

.hero_casino_r41__brand-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero_casino_r41__title {
    margin: 0 0 8px;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #facc15;
}

.hero_casino_r41__subtitle {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 700;
    color: #f9fafb;
}

.hero_casino_r41__text {
    margin: 0 0 24px;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5f5;
}

.hero_casino_r41__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero_casino_r41__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.35);
    font-size: 16px;
}

.hero_casino_r41__tag-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #facc15;
    font-size: 12px;
}

.hero_casino_r41__tag-text {
    white-space: nowrap;
}

/* ПРАВАЯ ЧАСТЬ */

.hero_casino_r41__visual {
    display: flex;
    justify-content: flex-end;
}

.hero_casino_r41__card {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 0%, #22c55e 0, #0f172a 50%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    padding: 12px 12px 18px;
    display: flex;
    align-items: stretch;
}

.hero_casino_r41__image {
    flex: 1 1 auto;
    min-height: 330px;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.4);
}

/* Плашка с иконками */
.hero_casino_r41__chips {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: flex;
    gap: 10px;
}

.hero_casino_r41__chip {
    border: none;
    outline: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #facc15;
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 12px 26px rgba(250, 204, 21, 0.6);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.hero_casino_r41__chip:hover {
    transform: translateY(-1px);
    background: #fbbf24;
    box-shadow: 0 16px 32px rgba(250, 204, 21, 0.75);
}

/* Адаптив */

@media (max-width: 1024px) {
    .hero_casino_r41 {
        padding: 56px 0 64px;
    }

    .hero_casino_r41__inner {
        gap: 30px;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .hero_casino_r41__title {
        font-size: 36px;
    }

    .hero_casino_r41__subtitle {
        font-size: 22px;
    }
}

@media (max-width: 820px) {
    .hero_casino_r41__inner {
        grid-template-columns: 1fr;
    }

    .hero_casino_r41__visual {
        justify-content: flex-start;
    }

    .hero_casino_r41__card {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero_casino_r41 {
        padding: 40px 0 52px;
    }

    .hero_casino_r41__title {
        font-size: 30px;
    }

    .hero_casino_r41__subtitle {
        font-size: 19px;
    }

    .hero_casino_r41__text {
        font-size: 14px;
    }

    .hero_casino_r41__inner {
        padding: 0 18px;
    }

    .hero_casino_r41__card {
        padding: 10px 10px 16px;
        border-radius: 24px;
    }

    .hero_casino_r41__image {
        border-radius: 18px;
        min-height: 210px;
    }

    .hero_casino_r41__chip {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 16px;
    }
}

.brandbar_q84 {
    background: radial-gradient(circle at 0% 0%, #170203 0, #17020b 40%, #200b0b 100%);
    padding: 10px 0 12px;
    font-family: "Play", sans-serif;
}

/* Контейнер */
.brandbar_q84__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Логотип */
.brandbar_q84__logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brandbar_q84__logo {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.6);
    font-size: 18px;
}

.brandbar_q84__name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #e5e7eb;
}

/* Бейдж справа */
.brandbar_q84__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.brandbar_q84__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.brandbar_q84__badge-text {
    font-size: 12px;
    color: #cbd5f5;
}

/* Адаптив */
@media (max-width: 768px) {
    .brandbar_q84 {
        padding: 8px 0 10px;
    }

    .brandbar_q84__inner {
        padding: 0 14px;
        gap: 12px;
    }

    .brandbar_q84__logo {
        width: 30px;
        height: 30px;
        border-radius: 12px;
        font-size: 16px;
    }

    .brandbar_q84__name {
        font-size: 16px;
    }

    .brandbar_q84__badge-text {
        font-size: 11px;
    }
}

.offerslist_g72 {
    background: radial-gradient(circle at 0% 0%, #3b4317 0, #19329f 40%, #02020c 100%);
    padding: 60px 0 70px;
    color: #e5e7eb;
    font-family: "Play", sans-serif;
}

.offerslist_g72__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовок */
.offerslist_g72__head {
    margin-bottom: 24px;
}

.offerslist_g72__title {
    margin: 0 0 6px;
    font-size: 32px;
    font-weight: 700;
}

.offerslist_g72__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #9ca3af;
}

/* Шапка таблицы */
.offerslist_g72__table-head {
    display: grid;
    grid-template-columns: 2.2fr 3fr 1.3fr 1.1fr 1.3fr;
    padding: 10px 18px;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
}

.offerslist_g72__th {
    display: flex;
    align-items: center;
}

.offerslist_g72__th--brand {
    justify-content: flex-start;
}

.offerslist_g72__th--offer {
    justify-content: flex-start;
}

.offerslist_g72__th--rating {
    justify-content: center;
}

.offerslist_g72__th--score {
    justify-content: center;
}

.offerslist_g72__th--action {
    justify-content: flex-end;
}

/* Строки */
.offerslist_g72__row {
    display: grid;
    grid-template-columns: 2.2fr 3fr 1.3fr 1.1fr 1.3fr;
    background: #020617;
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

/* ячейки */
.offerslist_g72__cell {
    display: flex;
    align-items: center;
}

.offerslist_g72__cell--brand {
    gap: 14px;
}

.offerslist_g72__cell--offer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.offerslist_g72__cell--rating {
    justify-content: center;
}

.offerslist_g72__cell--score {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offerslist_g72__cell--action {
    justify-content: flex-end;
}

/* Логотип */
.offerslist_g72__logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: radial-gradient(circle at 0% 0%, #0ea5e9 0, #1d4ed8 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.7);
}

.offerslist_g72__logo--purple {
    background: radial-gradient(circle at 0% 0%, #a855f7 0, #4c1d95 60%);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.7);
}

.offerslist_g72__logo-icon {
    font-size: 28px;
    color: #f9fafb;
    overflow: hidden;
    height: 72px;
    border-radius: 11px;
    background-color: #fff;
}

.offerslist_g72__logo-icon img {
    height: 75px;
    border-radius: 10px;
    width: 100%;
    object-fit: contain;
}

/* Инфо бренда */
.offerslist_g72__brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offerslist_g72__brand-name {
    font-size: 16px;
    font-weight: 600;
}

.offerslist_g72__brand-tagline {
    font-size: 12px;
    color: #9ca3af;
}

/* Оффер */
.offerslist_g72__offer-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #22c55e;
}

.offerslist_g72__offer-text {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
}

/* Рейтинг */
.offerslist_g72__stars {
    color: #facc15;
    font-size: 14px;
}

/* Оценка */
.offerslist_g72__score-value {
    font-size: 22px;
    font-weight: 700;
    color: #facc15;
}

.offerslist_g72__score-label {
    font-size: 12px;
    color: #a5b4fc;
}

/* Кнопка */
.offerslist_g72__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    color: #020617;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.6);
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.offerslist_g72__btn--secondary {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.65);
}

.offerslist_g72__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.8);
}

.offerslist_g72__btn--secondary:hover {
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.85);
}

.offerslist_g72__btn-icon {
    font-size: 17px;
}

/* Адаптив */
@media (max-width: 980px) {
    .offerslist_g72__table-head {
        display: none;
    }

    .offerslist_g72__row {
        grid-template-columns: 1fr;
        row-gap: 12px;
        padding: 16px 14px;
    }

    .offerslist_g72__cell--brand {
        justify-content: flex-start;
    }

    .offerslist_g72__cell--offer {
        order: 2;
    }

    .offerslist_g72__cell--rating,
    .offerslist_g72__cell--score,
    .offerslist_g72__cell--action {
        justify-content: space-between;
        display: flex;
    }

    .offerslist_g72__cell--rating {
        order: 3;
    }

    .offerslist_g72__cell--score {
        order: 4;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .offerslist_g72__cell--action {
        order: 5;
    }
}

@media (max-width: 640px) {
    .offerslist_g72 {
        padding: 42px 0 54px;
    }

    .offerslist_g72__inner {
        padding: 0 16px;
    }

    .offerslist_g72__title {
        font-size: 22px;
    }

    .offerslist_g72__subtitle {
        font-size: 16px;
    }

    .offerslist_g72__logo {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .offerslist_g72__logo-icon {
        font-size: 22px;
    }

    .offerslist_g72__btn {
        width: 100%;
        justify-content: center;
    }
}

.trustgrid_h21 {
    background: radial-gradient(circle at 0% 0%, #020617 0, #020617 45%, #020617 100%);
    padding: 60px 0 70px;
    color: #e5e7eb;
    font-family: "Play", sans-serif;
}

.trustgrid_h21__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.trustgrid_h21__head {
    max-width: 640px;
    margin: 0 auto 26px;
    text-align: center;
}

.trustgrid_h21__title {
    margin: 0 0 6px;
    font-size: 36px;
    font-weight: 700;
}

.trustgrid_h21__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #9ca3af;
}

/* Сетка карточек */
.trustgrid_h21__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Карточка */
.trustgrid_h21__card {
    background: radial-gradient(circle at 0% 0%, #0b1120 0, #020617 55%);
    border-radius: 20px;
    padding: 28px 26px 24px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trustgrid_h21__card--blue {
    box-shadow: 0 22px 40px rgba(59, 130, 246, 0.4);
}

.trustgrid_h21__card--green {
    box-shadow: 0 22px 40px rgba(34, 197, 94, 0.4);
}

.trustgrid_h21__card--purple {
    box-shadow: 0 22px 40px rgba(168, 85, 247, 0.4);
}

/* Иконки */
.trustgrid_h21__icon-wrap {
    width: 86px;
    height: 86px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(15, 23, 42, 0.85);
}

.trustgrid_h21__icon-wrap i {
    font-size: 42px;
}

.trustgrid_h21__card--blue .trustgrid_h21__icon-wrap {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.trustgrid_h21__card--green .trustgrid_h21__icon-wrap {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.trustgrid_h21__card--purple .trustgrid_h21__icon-wrap {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.trustgrid_h21__icon {
    font-size: 26px;
    color: #f9fafb;
}

/* Текст */
.trustgrid_h21__content {
    max-width: 260px;
}

.trustgrid_h21__label {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #e0f2fe;
}

.trustgrid_h21__text {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5f5;
}

/* Адаптив */
@media (max-width: 992px) {
    .trustgrid_h21__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .trustgrid_h21 {
        padding: 44px 0 52px;
    }

    .trustgrid_h21__inner {
        padding: 0 16px;
    }

    .trustgrid_h21__title {
        font-size: 22px;
    }

    .trustgrid_h21__subtitle {
        font-size: 16px;
    }

    .trustgrid_h21__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trustgrid_h21__card {
        padding: 24px 20px 22px;
    }
}

.guideblock_z54 {
    background: radial-gradient(circle at 0% 0%, #020617 0, #020617 40%, #020617 100%);
    padding: 60px 0 80px;
    color: #e5e7eb;
    font-family: "Play", sans-serif;
}

.guideblock_z54__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовок */
.guideblock_z54__header {
    margin-bottom: 24px;
    max-width: 780px;
}

.guideblock_z54__title {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #facc15;
}

.guideblock_z54__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #9ca3af;
}

/* Карточки */
.guideblock_z54__card {
    background: #020617;
    border-radius: 20px;
    padding: 18px 22px 20px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.guideblock_z54__card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 6px;
}

/* Основная иконка */
.guideblock_z54__icon-main {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #f9fafb;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.7);
}

.guideblock_z54__icon-main--green {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.7);
}

.guideblock_z54__icon-main--violet {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.7);
}

/* Бейдж номера */
.guideblock_z54__badge {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px dashed rgba(148, 163, 184, 0.4);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

.guideblock_z54__badge-index {
    font-weight: 600;
}

/* Контент карточки */
.guideblock_z54__card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guideblock_z54__card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e5f2ff;
}

.guideblock_z54__card-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5f5;
}

/* Tip / Note блоки */
.guideblock_z54__tip,
.guideblock_z54__note {
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px dashed rgba(148, 163, 184, 0.45);
}

.guideblock_z54__tip--outline {
    background: rgba(15, 23, 42, 0.7);
}

.guideblock_z54__tip-icon {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(250, 204, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #facc15;
    flex-shrink: 0;
    font-size: 14px;
}

.guideblock_z54__tip-icon--small {
    background: rgba(59, 130, 246, 0.18);
    color: #38bdf8;
}

.guideblock_z54__tip-content {
    font-size: 16px;
    line-height: 1.6;
}

.guideblock_z54__tip-label {
    font-weight: 600;
    margin-bottom: 2px;
    color: #facc15;
}

.guideblock_z54__tip-text {
    margin: 0;
    color: #e5e7eb;
}

/* Note */
.guideblock_z54__note-icon {
    color: #38bdf8;
    font-size: 14px;
}

.guideblock_z54__note-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;
}

/* Адаптив */
@media (max-width: 900px) {
    .guideblock_z54__title {
        font-size: 26px;
    }

    .guideblock_z54__card {
        grid-template-columns: 1fr;
    }

    .guideblock_z54__card-left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .guideblock_z54 {
        padding: 44px 0 56px;
    }

    .guideblock_z54__inner {
        padding: 0 16px;
    }

    .guideblock_z54__subtitle {
        font-size: 16px;
    }

    .guideblock_z54__card {
        padding: 16px 14px 18px;
    }

    .guideblock_z54__card-title {
        font-size: 16px;
    }

    .guideblock_z54__card-text {
        font-size: 16px;
    }
}

.faqdeck_c93 {
    background: radial-gradient(circle at 0% 0%, #020617 0, #020617 60%, #020617 100%);
    padding: 60px 0 70px;
    font-family: "Play", sans-serif;
    color: #e5e7eb;
}

.faqdeck_c93__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
    background: #020617;
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Заголовок */
.faqdeck_c93__header {
    text-align: center;
    padding: 28px 24px 18px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.faqdeck_c93__title {
    margin: 0 0 6px;
    font-size: 36px;
    font-weight: 800;
    color: #facc15;
    letter-spacing: 0.02em;
}

.faqdeck_c93__subtitle {
    margin: 0;
    font-size: 16px;
    color: #9ca3af;
}

/* Поиск */
.faqdeck_c93__search {
    display: flex;
    align-items: center;
    margin: 0 24px 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(56, 189, 248, 0.4);
    gap: 8px;
}

.faqdeck_c93__search-icon {
    color: #22c55e;
    font-size: 14px;
}

.faqdeck_c93__search-input {
    border: none;
    outline: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 16px;
    width: 100%;
}

/* Список */
.faqdeck_c93__list {
    padding: 0 0 6px;
}

/* Элемент FAQ */
.faqdeck_c93__item {
    border-top: 1px solid rgba(31, 41, 55, 0.85);
    background: transparent;
}

.faqdeck_c93__question {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: none;
    outline: none;
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faqdeck_c93__question-text {
    flex: 1 1 auto;
}

.faqdeck_c93__question-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 16px;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

/* Ответ */
.faqdeck_c93__answer {
    padding: 0 24px 0px;
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5f5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease-out, padding-top 0.18s ease-out, padding-bottom 0.18s ease-out;
}

/* Открытое состояние */
.faqdeck_c93__item--open .faqdeck_c93__answer {
    padding-top: 2px;
    padding-bottom: 18px;
    max-height: 180px;
    /* достаточно для коротких ответов */
}

.faqdeck_c93__item--open .faqdeck_c93__question-icon {
    transform: rotate(180deg);
    background: rgba(56, 189, 248, 0.2);
    color: #22c55e;
}

/* Hover */
.faqdeck_c93__question:hover {
    background: rgba(15, 23, 42, 0.95);
}

/* Адаптив */
@media (max-width: 700px) {
    .faqdeck_c93 {
        padding: 40px 0 44px;
    }

    .faqdeck_c93__inner {
        padding: 0 16px;
        border-radius: 18px;
    }

    .faqdeck_c93__header {
        padding: 22px 10px 14px;
    }

    .faqdeck_c93__title {
        font-size: 24px;
    }

    .faqdeck_c93__subtitle {
        font-size: 16px;
    }

    .faqdeck_c93__search {
        margin: 0 10px 10px;
    }

    .faqdeck_c93__question {
        padding: 12px 14px;
        font-size: 14px;
    }

    .faqdeck_c93__answer {
        /* padding: 0 14px 14px; */
    }
}

.cookiebar_s91 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 10px 16px 18px;
    background: linear-gradient(135deg, #020617, #020617);
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookiebar_s91--hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookiebar_s91__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 16px;
    background: radial-gradient(circle at 0% 0%, #020617 0, #020617 60%);
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #e5e7eb;
    font-family: "Play", sans-serif;
}

/* Left side */
.cookiebar_s91__info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
}

.cookiebar_s91__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.7);
    flex-shrink: 0;
}

.cookiebar_s91__icon {
    color: #020617;
    font-size: 20px;
}

.cookiebar_s91__text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookiebar_s91__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;
}

.cookiebar_s91__link {
    font-size: 12px;
    color: #38bdf8;
    text-decoration: underline;
}

/* Buttons */
.cookiebar_s91__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookiebar_s91__btn {
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #020617;
    background: #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.cookiebar_s91__btn-icon {
    font-size: 14px;
}

.cookiebar_s91__btn--accept {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.cookiebar_s91__btn--decline {
    background: linear-gradient(135deg, #f97373, #fb7185);
}

.cookiebar_s91__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.85);
    opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
    .cookiebar_s91 {
        padding: 8px 10px 12px;
    }

    .cookiebar_s91__inner {
        padding: 10px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookiebar_s91__buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .cookiebar_s91__btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .cookiebar_s91__text {
        font-size: 12px;
    }
}

.footinfo_q82 {
    background: radial-gradient(circle at 0 0, #020617 0, #020617 55%, #020617 100%);
    padding: 60px 0 40px;
    color: #e5e7eb;
    font-family: "Play", sans-serif;
}

.footinfo_q82__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* GRID */
.footinfo_q82__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

/* Heading */
.footinfo_q82__heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #38bdf8;
}

.footinfo_q82__heading-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 13px;
}

/* Text & links */
.footinfo_q82__text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5f5;
}

.footinfo_q82__text--small {
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footinfo_q82__text--small img {
    height: 40px;
    width: auto;
}

.footinfo_q82__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footinfo_q82__link {
    display: inline-block;
    padding: 3px 0;
    font-size: 16px;
    color: #e5e7eb;
    text-decoration: none;
    position: relative;
}

.footinfo_q82__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #38bdf8, #22c55e);
    transition: width 0.18s ease;
}

.footinfo_q82__link:hover::after {
    width: 100%;
}

/* Tags */
.footinfo_q82__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footinfo_q82__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 16px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.footinfo_q82__tag i {
    font-size: 12px;
    color: #22c55e;
}

/* Partners */
.footinfo_q82__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footinfo_q82__partner {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 18px;
    background: rgba(30, 64, 175, 0.9);
    color: #e5e7eb;
}

/* Safe Play banner */
.footinfo_q82__safe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 26px auto 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(250, 204, 21, 0.7);
    color: #fde68a;
    font-size: 13px;
    font-weight: 600;
}

.footinfo_q82__safe-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Disclaimer & bottom text */
.footinfo_q82__disclaimer {
    max-width: 900px;
    margin: 6px auto 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
}

.footinfo_q82__bottom-text {
    text-align: center;
    font-size: 13px;
    margin: 4px 0;
    color: #9ca3af;
}

.footinfo_q82__bottom-text--copy {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 960px) {
    .footinfo_q82__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        row-gap: 28px;
    }
}

@media (max-width: 720px) {
    .footinfo_q82 {
        padding: 46px 0 32px;
    }

    .footinfo_q82__inner {
        padding: 0 16px;
    }

    .footinfo_q82__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .footinfo_q82__heading {
        font-size: 16px;
    }

    .footinfo_q82__text,
    .footinfo_q82__link {
        font-size: 16px;
    }

    .footinfo_q82__safe {
        margin-top: 22px;
    }

    .footinfo_q82__disclaimer {
        font-size: 14px;
    }

    .footinfo_q82__bottom-text {
        font-size: 16px;
    }
}

.policywrap_k17 {
    background: radial-gradient(circle at 0 0, #020617 0, #020617 60%, #020617 100%);
    padding: 48px 0 60px;
    color: #e5e7eb;
     font-family: "Play", sans-serif;
}

.policywrap_k17__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.policywrap_k17__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 20px;
    margin-bottom: 22px;
    align-items: stretch;
}

.policywrap_k17__hero-text {
    padding: 16px 18px 10px;
}

.policywrap_k17__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #facc15;
}

.policywrap_k17__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5f5;
}

.policywrap_k17__hero-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.policywrap_k17__hero-art {
    width: 220px;
    height: 120px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1, #ec4899);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
}

.policywrap_k17__hero-chip {
    position: absolute;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(248, 250, 252, 0.2);
}

.policywrap_k17__hero-chip--one {
    width: 70px;
    height: 26px;
    top: 18px;
    left: 24px;
}

.policywrap_k17__hero-chip--two {
    width: 52px;
    height: 22px;
    bottom: 20px;
    right: 26px;
}

.policywrap_k17__hero-chip--three {
    width: 34px;
    height: 34px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.95);
}

/* Cards */
.policywrap_k17__cards {
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(31, 41, 55, 0.95);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.policywrap_k17__card {
    padding: 16px 18px 14px;
    border-top: 1px solid rgba(30, 64, 175, 0.45);
}

.policywrap_k17__card:first-child {
    border-top: none;
}

.policywrap_k17__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.policywrap_k17__card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 1);
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
}

.policywrap_k17__card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #e5f2ff;
}

.policywrap_k17__list {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.8;
    color: #cbd5f5;
}

.policywrap_k17__list li+li {
    margin-top: 2px;
}

.policywrap_k17__highlight {
    color: #38bdf8;
    font-weight: 600;
}

/* Meta line */
.policywrap_k17__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px dashed rgba(148, 163, 184, 0.6);
    font-size: 12px;
    color: #9ca3af;
}

.policywrap_k17__meta-icon {
    color: #22c55e;
}

/* Responsive */
@media (max-width: 900px) {
    .policywrap_k17__hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .policywrap_k17__hero-media {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .policywrap_k17 {
        padding: 38px 0 46px;
    }

    .policywrap_k17__inner {
        padding: 0 14px;
    }

    .policywrap_k17__title {
        font-size: 20px;
    }

    .policywrap_k17__subtitle {
        font-size: 13px;
    }

    .policywrap_k17__card {
        padding: 14px 12px 12px;
    }

    .policywrap_k17__card-title {
        font-size: 14px;
    }

    .policywrap_k17__list {
        font-size: 12px;
    }

    .policywrap_k17__meta {
        margin-top: 12px;
        font-size: 11px;
    }
}

.agegate_m44 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
     font-family: "Play", sans-serif;
    color: #e5e7eb;
}

.agegate_m44--hidden {
    display: none;
}

/* запрет скролла, пока открыт модал */
.agegate_m44__body-lock {
    overflow: hidden;
}

/* фон */
.agegate_m44__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.08), transparent 55%),
        rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(6px);
}

/* диалог */
.agegate_m44__dialog {
    position: relative;
    max-width: 520px;
    width: 100%;
    margin: 0 16px;
    border-radius: 18px;
    background: #020617;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    overflow: hidden;
}

/* верхняя плашка */
.agegate_m44__topbar {
    height: 10px;
    background: linear-gradient(90deg, #22c55e, #38bdf8, #a855f7);
    position: relative;
}

.agegate_m44__topbar-pill {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 12px;
}

.agegate_m44__topbar-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 10px;
}

.agegate_m44__topbar-label {
    font-weight: 600;
}

/* контент */
.agegate_m44__content,
.agegate_m44__denied {
    padding: 22px 22px 20px;
}

.agegate_m44__denied {
    display: none;
}

/* когда доступ запрещён */
.agegate_m44--denied .agegate_m44__content {
    display: none;
}

.agegate_m44--denied .agegate_m44__denied {
    display: block;
}

.agegate_m44__title {
    margin: 8px 0 10px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #facc15;
}

.agegate_m44__text {
    margin: 0 0 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5f5;
}

.agegate_m44__text--small {
    font-size: 16px;
}

.agegate_m44__link {
    color: #38bdf8;
    text-decoration: underline;
}

/* remember */
.agegate_m44__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 14px;
    font-size: 13px;
    cursor: pointer;
}

.agegate_m44__checkbox {
    display: none;
}

.agegate_m44__checkbox-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.agegate_m44__checkbox:checked+.agegate_m44__checkbox-box {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    border-color: #22c55e;
    color: #020617;
}

/* кнопки */
.agegate_m44__buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.agegate_m44__btn {
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.8);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.agegate_m44__btn--yes {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #020617;
}

.agegate_m44__btn--no {
    background: linear-gradient(135deg, #f97373, #fb7185);
    color: #020617;
}

.agegate_m44__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.9);
    opacity: 0.96;
}

.agegate_m44__btn-icon {
    font-size: 14px;
}

/* дисклеймер */
.agegate_m44__disclaimer {
    margin: 0;
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
}

/* адаптив */
@media (max-width: 640px) {
    .agegate_m44__dialog {
        margin: 0 10px;
        border-radius: 16px;
    }

    .agegate_m44__content,
    .agegate_m44__denied {
        padding: 18px 16px 16px;
    }

    .agegate_m44__title {
        font-size: 20px;
    }

    .agegate_m44__text {
        font-size: 13px;
    }

    .agegate_m44__buttons {
        flex-direction: column;
    }

    .agegate_m44__btn {
        width: 100%;
    }
}