/* Uniqueified: 5e4b7f8d */
/* Prefix: axxh- */
/* Prefixes-map: wn->axxh */
/* Widget-prefixes: {"cb":"ftqj","wb":"rcxz","wt":"xhmw","ms":"rdhg","fl":"gfrn","lm":"zqbn","rv":"jbwb"} */
/* Classmap: {"wn-age":"axxh-ssfnz","wn-auth":"axxh-cnnpv","wn-brand":"axxh-pdxem","wn-btn":"axxh-kbmbf","wn-btn--accent":"axxh-ctfdr","wn-btn--soft":"axxh-gzqqy","wn-burger":"axxh-rptca","wn-content":"axxh-zajvs","wn-copy":"axxh-xkzpg","wn-drawer":"axxh-ezpmn","wn-drawer-auth":"axxh-vtwyh","wn-drawer-close":"axxh-wnjjc","wn-drawer-item":"axxh-ngzvr","wn-drawer-logo":"axxh-fykxm","wn-drawer-nav":"axxh-aprxx","wn-drawer-panel":"axxh-edkkr","wn-drawer-scrim":"axxh-fpsmm","wn-faq":"axxh-tshwe","wn-faq-item":"axxh-nfbnp","wn-footer":"axxh-hshkh","wn-footer-inner":"axxh-axwhm","wn-footer-logo":"axxh-msvga","wn-footer-nav":"axxh-bpqfa","wn-header":"axxh-rcdfh","wn-header-inner":"axxh-thmyw","wn-logo":"axxh-ppwms","wn-logo-mark":"axxh-ydhst","wn-logo-sub":"axxh-nfccr","wn-logo-text":"axxh-ybvka","wn-main":"axxh-ezaxs","wn-nav":"axxh-ddcnn","wn-nav-item":"axxh-gwzba","wn-rg":"axxh-eysns","wn-submenu":"axxh-zafcm","wn-submenu-toggle":"axxh-jcpwz","wn-top":"axxh-anfgv","wn-visually-hidden":"axxh-qdynw"} */

/* Брендовые переменные. Перекраска (deriveBrandVarMap) заполняет РОВНО эти 12 имён из
   style.json/palette.json бренда — переменной нет в :root, значит для неё перекраска молча
   пропускается. Значения ниже = палитра донора (winstlercasinos.uk), она же дефолт шаблона.
   retint:true только у --c-accent и --c-purple: любой литерал в файле, побайтово совпавший с
   их rgb, будет перекрашен по всему файлу (грабли №2), поэтому декоративных литералов этих
   двух цветов здесь нет — всё идёт через var(). */
:root {
    --c-bg: #0c181a;
    --c-surface: #17292a;
    --c-surface-alt: #234244;
    --c-border: #2c5151;
    --c-text: #f2f4fa;
    --c-text-muted: #969e9d;
    --c-accent: #41e7dc;
    --c-accent-hover: #72ebe5;
    --c-on-accent: #0c1b17;
    --c-purple: #40e9dc;
    --c-purple-hover: #74ede5;
    --c-on-purple: #0b1817;

    /* Не брендируются (у deriveBrandVarMap для них нет источника), но объявить обязательно —
       иначе значения негде взять. */
    --c-white: #fffffe;
    --c-green: #3fe089;
    --c-shadow: rgba(0, 3, 0, .35);
    --c-overlay: rgba(0, 3, 0, .7);

    /* Высота липкой шапки — одной переменной, чтобы scroll-margin якорей не разъехался с
       реальной шапкой (грабли №20). */
    --axxh-header-h: 118px;
}

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

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.46;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

img { max-width: 100%; height: auto; }

a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }

svg { display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.axxh-qdynw {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Элементы, ведущие в офферную систему: href у них нет, клик ловит делегат из шаблона. */
.go-link { cursor: pointer; }

/* Оверлей-спиннер на время редиректа в офферную систему. Разметку создаёт ОБЩИЙ
   go-redirect.js (`#go-overlay` > `.go-spinner`), стили обязан нести шаблон — без них клик
   выглядит как «ничего не произошло» (грабли №25). Селектор с ID обязателен: `#go-overlay`
   имеет специфичность (1,0,0), голый `.go-overlay--visible` (0,1,0) его НЕ перебивает
   (грабли №26). Префикс `go-` в RESERVED_PREFIXES — клонирование его не переименовывает. */
#go-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: var(--c-overlay, rgba(0, 3, 0, .7));
}

#go-overlay.go-overlay--visible { display: flex; }

.go-spinner {
    width: 3.5rem;
    height: 3.5rem;
    border: .3125rem solid color-mix(in srgb, var(--c-text) 20%, transparent);
    border-top-color: var(--c-accent);
    border-radius: 50%;
    animation: go-spin .8s linear infinite;
}

@keyframes go-spin { to { transform: rotate(360deg); } }

.axxh-kbmbf {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 13px 19px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.axxh-kbmbf:hover { text-decoration: none; }
.axxh-kbmbf:active { transform: translateY(1px); }

.axxh-ctfdr { background: var(--c-accent); color: var(--c-on-accent); }
.axxh-ctfdr:hover { background: var(--c-accent-hover); color: var(--c-on-accent); }

.axxh-gzqqy { background: var(--c-purple); color: var(--c-on-purple); }
.axxh-gzqqy:hover { background: var(--c-purple-hover); color: var(--c-on-purple); }

.axxh-rcdfh {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--c-surface-alt);
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent);
}

.axxh-thmyw {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 17px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 14px;
}

.axxh-pdxem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 48px;
}

.axxh-rptca {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 45px;
    padding: 10px 4px;
}

.axxh-rptca span {
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 2px;
    background: var(--c-text);
}

.axxh-ppwms {
    display: flex;
    align-items: center;
    gap: 8px;
}

.axxh-ppwms:hover { text-decoration: none; }

.axxh-ppwms img { height: 44px; width: auto; }

.axxh-ydhst {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-on-accent);
    font-size: 24px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
}

.axxh-ybvka {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--c-text);
}

.axxh-nfccr {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--c-accent);
}

.axxh-ddcnn { display: none; }

.axxh-cnnpv {
    display: flex;
    gap: 6px;
    width: 100%;
}

.axxh-cnnpv .axxh-kbmbf { flex: 1; }

.axxh-ezpmn {
    position: fixed;
    inset: 0;
    z-index: 52;
    visibility: hidden;
}

.axxh-ezpmn[data-open="true"] { visibility: visible; }

.axxh-fpsmm {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, #000 60%, transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.axxh-ezpmn[data-open="true"] .axxh-fpsmm { opacity: 1; }

.axxh-edkkr {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 88%;
    height: 100%;
    padding: 8px;
    overflow-y: auto;
    background: var(--c-surface-alt);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
}

.axxh-ezpmn[data-open="true"] .axxh-edkkr { transform: translateX(0); }

.axxh-wnjjc {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-on-accent);
}

.axxh-fykxm {
    display: flex;
    justify-content: center;
    padding-top: 13px;
}

.axxh-vtwyh {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 17px 8px 0;
}

.axxh-aprxx {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    list-style: none;
}

.axxh-aprxx > li {
    border-radius: 12px;
    background: color-mix(in srgb, var(--c-accent) 20%, transparent);
}

.axxh-ngzvr {
    position: relative;
    display: flex;
    align-items: center;
}

.axxh-ngzvr > a {
    flex: 1;
    min-height: 45px;
    padding: 13px 45px 13px 17px;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
}

.axxh-ngzvr > a:hover { text-decoration: none; }

.axxh-jcpwz {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: -15px;
    border-radius: 50%;
    background: var(--c-purple);
    color: var(--c-on-purple);
    transition: transform 0.2s ease;
}

.axxh-jcpwz svg { width: 18px; height: 18px; }
.axxh-jcpwz[aria-expanded="true"] { transform: rotate(180deg); }

.axxh-zafcm {
    display: none;
    padding: 0 9px 11px;
    list-style: none;
}

.axxh-zafcm[data-open="true"] { display: block; }

.axxh-zafcm a {
    display: block;
    padding: 11px 5px;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-text);
    border-top: 1px solid var(--c-border);
}

.axxh-zafcm a:hover { color: var(--c-accent); text-decoration: none; }

.axxh-ezaxs {
    display: flex;
    flex-direction: column;
    padding: 0 22px;
}

.axxh-zajvs {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    padding: 16px 0;
}

/* Якоря из [[!AddAnchorsToHeadings]] проставляются на сами h2-h4 внутри контента, поэтому
   отступ под липкую шапку вешается на них, а не только на секции. */
.axxh-zajvs[id],
.axxh-zajvs :is(h2, h3, h4)[id] { scroll-margin-top: calc(var(--axxh-header-h) + 13px); }

/* Секции, которые на конкретном домене оказались пустыми, не должны занимать место: вторая
   врезка баннера отдаёт '' при единственной картинке, блок FAQ — когда TV faq_q1..10 не
   заполнены. :empty здесь не годится (внутри остаются пробелы и переводы строк), поэтому
   проверяем отсутствие дочерних ЭЛЕМЕНТОВ. */
.axxh-ezaxs > .axxh-zajvs:not(:has(*)) { display: none; }

/* Крошки печатает ОБЩИЙ сниппет breadcrumbsHtml с ЛИТЕРАЛЬНЫМ классом `breadcrumbs`
   (без префикса) — клонирование его не трогает, правила обязан нести шаблон. */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 15px;
    padding: 0;
    font-size: 0.875rem;
    list-style: none;
    color: var(--c-text-muted);
}

.breadcrumbs li { display: flex; align-items: center; gap: 5px; }
.breadcrumbs li a { color: var(--c-text-muted); text-decoration: none; }
.breadcrumbs li a:hover { color: var(--c-accent); }
.breadcrumbs li:last-child span { color: var(--c-text); }
.breadcrumbs li + li::before { content: "/"; color: var(--c-text-muted); }

.axxh-zajvs h1,
.axxh-zajvs h2,
.axxh-zajvs h3,
.axxh-zajvs h4,
.axxh-zajvs h5,
.axxh-zajvs h6 { color: var(--c-text); }

.axxh-zajvs h1 {
    margin-bottom: 17px;
    font-size: clamp(1.781rem, 1.653rem + 0.524vw, 2.125rem);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.axxh-zajvs h2 {
    margin-bottom: 15px;
    font-size: clamp(1.646rem, 1.560rem + 0.350vw, 1.875rem);
    font-weight: 700;
    line-height: 1.05;
}

.axxh-zajvs h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.axxh-zajvs h4 {
    margin-bottom: 7px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.axxh-zajvs h5 {
    margin-bottom: 9px;
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.4;
}

.axxh-zajvs h6 {
    margin-bottom: 10px;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-accent);
}

.axxh-zajvs h2:not(:first-child),
.axxh-zajvs h3:not(:first-child) { margin-top: 25px; }

.axxh-zajvs p {
    margin-bottom: 15px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.axxh-zajvs ul,
.axxh-zajvs ol {
    margin: 0 0 17px 18px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.axxh-zajvs li { margin-bottom: 4px; }
.axxh-zajvs li::marker { color: var(--c-accent); }

.axxh-zajvs a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.axxh-zajvs a:hover { color: var(--c-purple); }

.axxh-zajvs .axxh-kbmbf { text-decoration: none; }
.axxh-zajvs .axxh-ctfdr, .axxh-zajvs .axxh-ctfdr:hover { color: var(--c-on-accent); }
.axxh-zajvs .axxh-gzqqy, .axxh-zajvs .axxh-gzqqy:hover { color: var(--c-on-purple); }

.axxh-zajvs strong { font-weight: 700; }
.axxh-zajvs em { font-style: italic; }

.axxh-zajvs img { max-width: 100%; height: auto; border-radius: 12px; }

.axxh-zajvs blockquote {
    margin: 0 0 17px;
    padding: 18px 18px;
    border-left: 3px solid var(--c-accent);
    border-radius: 0 16px 12px 0;
    background: var(--c-surface);
    font-size: 0.96rem;
    font-style: italic;
    line-height: 1.51;
}

/* Таблицы приезжают из [[*content]] БЕЗ обёртки, поэтому скролл-контейнером на мобиле
   становится сама таблица. min-width здесь ставить нельзя — он даёт горизонтальный скролл
   всей страницы (грабли №7). */
.axxh-zajvs table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 14px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    font-size: 0.96rem;
}

.axxh-zajvs th,
.axxh-zajvs td {
    padding: 9px;
    border: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top;
    line-height: 1.46;
}

.axxh-zajvs th {
    background: var(--c-surface);
    font-weight: 700;
    color: var(--c-text);
}

/* ===== Баннер — печатает сниппет [[!WnBanner]], ключ widget-префикса `wb` =====
   Классы здесь НЕ на приватном префиксе шаблона: приватный (axxh-) рандомизируется в HTML
   шаблона при клонировании, а вывод сниппета остался бы со старым именем и без стилей.
   Сниппет печатает cg_widget_prefix($modx,'wb','wb'), и assignWidgetPrefixes() переименует
   обе стороны согласованно. Кнопка несёт свой полный набор свойств (повторяет .axxh-kbmbf) —
   печатать .axxh-kbmbf из сниппета нельзя по той же причине. */
.rcxz-banner {
    position: relative;
    margin: 0 0 21px;
}

.rcxz-media {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 13px;
}

.rcxz-media img {
    width: 100%;
    aspect-ratio: 16 / 10.3;
    object-fit: cover;
    border-radius: 0;
}

.rcxz-box {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 11px;
    border-radius: 0 0 16px 15px;
    background: color-mix(in srgb, #000 45%, transparent);
    text-align: center;
}

.axxh-zajvs .rcxz-title {
    margin: 0;
    font-size: clamp(1.187rem, 0.931rem + 1.049vw, 1.875rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--c-white);
}

.axxh-zajvs .rcxz-cta,
.rcxz-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 14px 21px;
    border-radius: 15px;
    background: var(--c-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: var(--c-on-accent);
    transition: background 0.2s ease;
}

.axxh-zajvs .rcxz-cta:hover,
.rcxz-cta:hover { background: var(--c-accent-hover); color: var(--c-on-accent); text-decoration: none; }

/* ===== Оглавление — печатает сниппет [[!WnToc]], ключ widget-префикса `wt` ===== */
.xhmw-toc { padding: 17px 0; }

.xhmw-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 45px;
    padding: 6px 12px;
    border-radius: 15px;
    background: var(--c-accent);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-on-accent);
}

.xhmw-toggle svg { width: 20px; height: 20px; }

.xhmw-panel { display: none; margin-top: 14px; }
.xhmw-panel[data-open="true"] { display: block; }

.axxh-zajvs .xhmw-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 11px;
    border-radius: 12px;
    background: var(--c-surface);
    list-style: none;
}

.axxh-zajvs .xhmw-list li { margin: 0; }

.axxh-zajvs .xhmw-list a,
.xhmw-list a {
    display: block;
    padding: 7px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    text-decoration: none;
}

.axxh-zajvs .xhmw-list a:hover,
.xhmw-list a:hover { color: var(--c-accent); }

.axxh-tshwe { padding-top: 17px; }

.axxh-nfbnp {
    margin-bottom: 15px;
    padding: 18px 21px 27px;
    border-radius: 15px;
    background: var(--c-surface);
}

.axxh-nfbnp h3 {
    margin: 0 0 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 18%, transparent);
}

.axxh-nfbnp p:last-child { margin-bottom: 0; }

.axxh-hshkh {
    padding-bottom: 9px;
    background: color-mix(in srgb, var(--c-bg) 65%, #000);
}

.axxh-axwhm {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 16px;
    text-align: center;
}

.axxh-bpqfa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    list-style: none;
}

.axxh-bpqfa a {
    display: inline-block;
    min-height: 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
    text-decoration: none;
}

.axxh-bpqfa a:hover { color: var(--c-accent); }

.axxh-msvga { display: flex; justify-content: center; margin-bottom: 17px; }
.axxh-msvga img { height: 40px; width: auto; }

.axxh-ssfnz {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 26px auto 0;
    border: 1px solid color-mix(in srgb, var(--c-text) 30%, transparent);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

.axxh-eysns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 19px;
}

/* Явные размеры обязательны: у SVG регуляторов разная внутренняя геометрия, без этого они
   разъезжаются по высоте (грабли №18). */
.axxh-eysns a { display: flex; align-items: center; }
.axxh-eysns img { width: 6.5rem; height: 2.2rem; object-fit: contain; }

.axxh-xkzpg {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--c-text-muted);
}

.axxh-xkzpg a { color: var(--c-text-muted); text-decoration: underline; }
.axxh-xkzpg a:hover { color: var(--c-accent); }

.axxh-anfgv {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--c-purple);
    color: var(--c-on-purple);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.axxh-anfgv[data-visible="true"] { opacity: 1; visibility: visible; }

/* ===== CookieBanner (общий сниппет [[!CookieBanner]], ключ префикса `cb`) =====
   Классы печатает сниппет через cg_widget_prefix($modx,'cb','cb'); литеральные `.ftqj-*`
   обязаны существовать здесь, иначе tallyPrefixCandidates() не найдёт ключ при сканировании
   и assignWidgetPrefixes() не сможет их рандомизировать. */
.ftqj-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: color-mix(in srgb, #000 60%, transparent);
}

.ftqj-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 61;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 14px 19px;
    background: var(--c-surface-alt);
    border-top: 1px solid var(--c-border);
}

.ftqj-text { font-size: 0.9rem; line-height: 1.5; color: var(--c-text); }
.ftqj-text a { color: var(--c-accent); text-decoration: underline; }

.ftqj-actions { display: flex; flex-wrap: wrap; gap: 7px; }

.ftqj-btn {
    flex: 1 1 auto;
    min-height: 45px;
    padding: 11px 20px;
    border-radius: 13px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.ftqj-btn--accept { background: var(--c-accent); color: var(--c-on-accent); }
.ftqj-btn--save { background: var(--c-purple); color: var(--c-on-purple); }

.ftqj-btn--reject,
.ftqj-btn--settings {
    background: transparent;
    border: 1px solid var(--c-border);
    color: var(--c-text);
}

.ftqj-modal {
    position: fixed;
    inset: 0;
    z-index: 62;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    background: color-mix(in srgb, #000 70%, transparent);
}

.ftqj-modal__inner {
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 21px;
    border-radius: 15px;
    background: var(--c-surface);
}

.ftqj-modal__title { margin-bottom: 8px; font-size: 1.3rem; font-weight: 700; color: var(--c-text); }
.ftqj-modal__desc { margin-bottom: 17px; font-size: 0.9rem; line-height: 1.5; color: var(--c-text-muted); }

.ftqj-categories { display: flex; flex-direction: column; gap: 13px; margin-bottom: 19px; }

.ftqj-cat { padding-bottom: 15px; border-bottom: 1px solid var(--c-border); }
.ftqj-cat:last-child { border-bottom: 0; padding-bottom: 0; }

.ftqj-cat__header { display: flex; align-items: center; justify-content: space-between; gap: 13px; margin-bottom: 7px; }
.ftqj-cat__name { font-weight: 600; color: var(--c-text); }
.ftqj-cat__always { font-size: 0.8rem; color: var(--c-text-muted); }
.ftqj-cat__desc { font-size: 0.85rem; line-height: 1.45; color: var(--c-text-muted); }

.ftqj-toggle { position: relative; flex: none; width: 44px; height: 24px; }
.ftqj-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }

.ftqj-toggle__slider {
    display: block;
    width: 44px;
    height: 24px;
    border-radius: 13px;
    background: var(--c-border);
    transition: background 0.2s ease;
}

.ftqj-toggle__slider::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c-text);
    transition: transform 0.2s ease;
}

.ftqj-toggle input:checked + .ftqj-toggle__slider { background: var(--c-accent); }
.ftqj-toggle input:checked + .ftqj-toggle__slider::before { transform: translateX(20px); background: var(--c-on-accent); }

.ftqj-modal__actions { display: flex; flex-wrap: wrap; gap: 7px; }

@media (min-width: 768px) {
    .axxh-bpqfa { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
    /* wrap обязателен: бейджей стало до семи, в один ряд они влезают только на широком
       десктопе, а на планшете иначе вылезали бы за контейнер. */
    .axxh-eysns { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 15px 23px; }
    .rcxz-media img { aspect-ratio: 16 / 6.5; }
    .ftqj-banner { flex-direction: row; align-items: center; gap: 22px; }
    .ftqj-actions { flex: none; }
    .ftqj-btn { flex: none; }
}

@media (min-width: 1024px) {
    :root { --axxh-header-h: 69px; }

    .axxh-thmyw {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 23px;
    }

    .axxh-pdxem { width: auto; justify-content: flex-start; }
    .axxh-rptca { display: none; }
    .axxh-ezpmn { display: none; }

    .axxh-ppwms img { height: 36px; }

    .axxh-ddcnn {
        display: flex;
        flex: 1;
        justify-content: center;
        gap: 21px;
        list-style: none;
    }

    .axxh-gwzba { position: relative; display: flex; align-items: center; gap: 7px; }

    .axxh-gwzba > a {
        font-size: 0.98rem;
        font-weight: 500;
        color: var(--c-text);
        text-decoration: none;
    }

    .axxh-gwzba > a:hover { color: var(--c-accent); }

    .axxh-gwzba > .axxh-jcpwz {
        position: static;
        width: 24px;
        height: 24px;
        margin: 0;
        background: none;
        color: var(--c-text);
    }

    .axxh-gwzba > .axxh-jcpwz svg { width: 24px; height: 24px; }

    .axxh-ddcnn .axxh-zafcm {
        position: absolute;
        top: 100%;
        left: 50%;
        min-width: 200px;
        margin-top: 11px;
        padding: 6px 11px 6px;
        border: 1px solid color-mix(in srgb, var(--c-text) 10%, transparent);
        border-radius: 15px;
        background: var(--c-surface-alt);
        transform: translateX(-50%);
    }

    .axxh-ddcnn .axxh-zafcm a { white-space: nowrap; }
    .axxh-ddcnn .axxh-zafcm li:first-child a { border-top: 0; }

    .axxh-cnnpv { width: auto; }
    .axxh-cnnpv .axxh-kbmbf { flex: none; min-width: 100px; min-height: 42px; padding: 13px 14px; }

    .axxh-ezaxs { padding: 0 23px; }

    .axxh-zajvs table { display: table; }

    .rcxz-media img { aspect-ratio: 1190 / 400; }

    .rcxz-box {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: max-content;
        max-width: 60%;
        gap: 8px;
        padding: 16px 15px;
        border-radius: 13px;
        background: var(--c-overlay);
        transform: translate(-50%, -50%);
    }

    .rcxz-box .rcxz-cta { align-self: center; min-height: 39px; }

    .axxh-anfgv { right: 32px; bottom: 32px; }
}

.rdhg-strip{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:16px;margin:20px 0 12px}
.rdhg-lead{display:flex;align-items:center;gap:8px}
.rdhg-age{width:32px;height:32px;flex:0 0 auto}
.rdhg-chip{font-size:13px;line-height:1.35;opacity:.85}
.rdhg-pays{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:7px}
.rdhg-pay{width:40px;height:26px;object-fit:contain;opacity:.8}

/* FooterLinks (2026-08-24) */
.gfrn-links{display:flex;flex-direction:column;gap:10px;margin:13px 0 8px;font-size:13px}
.gfrn-row,.gfrn-block{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:7px 19px}
.gfrn-caption{opacity:.65;margin-right:5px}
.gfrn-item a{color:inherit;text-decoration:underline;text-underline-offset:2px;opacity:.85}
.gfrn-item a:hover{opacity:1}

/* LastModified #302 [Base] 3 — плашка на фоне, дата крупнее подписи и стоит ПЕРВОЙ.
   Дописывать В КОНЕЦ assets/css/wn.min.css.
   Структура третья: div > time + span, порядок «дата → подпись» обратный остальным двум. */
.zqbn-plate{display:inline-block;margin:17px 0 19px;padding:11px 18px;border-left:3px solid #3d7bff;border-radius:9px;background:#161a2b}
.zqbn-big{display:block;font-size:19px;font-weight:700;line-height:1.2;color:#eef5f9}
.zqbn-cap{display:block;margin-top:5px;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#7a879b}
/* ── Comments block (rv) — [Base] 3 #302 ────────────────────────────────────
   Раскладка: двухколоночная плитка, оценка крупной цифрой, имя в подписи.
   ⛔ Значения ЛИТЕРАЛАМИ (#hex и px), не var()/rem — иначе джиттер их не двигает.
   Палитра из темы: surface #34323b, border #33363c, accent #f5e63a,
   muted #b9b8bb, радиус 14px — доминирующий у этой темы (13 из 26 правил). */
.jbwb-wrap{margin:33px 0}
.jbwb-cap{font-size:26px;line-height:1.3;margin:0 0 19px;color:#fffdfd}
.jbwb-grid{display:grid;grid-template-columns:1fr 1fr;gap:13px;list-style:none;margin:0;padding:0}
.jbwb-tile{background:#31343b;border:1px solid #35333c;border-radius:15px;padding:19px 16px 12px}
.jbwb-score{display:block;color:#f5e83a;font-size:34px;line-height:1;font-weight:700;margin-bottom:8px}
.jbwb-say{color:#fffdfe;font-size:14px;line-height:1.6;margin:0 0 14px}
.jbwb-sig{color:#b9b5bb;font-size:12px;border-top:1px solid #35333c;padding-top:11px}
@media (max-width:700px){.jbwb-grid{grid-template-columns:1fr}}
