/* Uniqueified: a1101ddb */
/* Prefix: thqf- */
/* Prefixes-map: wn->thqf */
/* Widget-prefixes: {"cb":"grsc","wb":"xqxd","wt":"nzgf","ms":"mdzb","fl":"rtqc","lm":"tamg","rv":"wnzz"} */
/* Classmap: {"wn-age":"thqf-asqqd","wn-auth":"thqf-cyxeh","wn-brand":"thqf-makkd","wn-btn":"thqf-nfnyd","wn-btn--accent":"thqf-khevm","wn-btn--soft":"thqf-zkgzd","wn-burger":"thqf-wqzct","wn-content":"thqf-hfjxy","wn-copy":"thqf-gdhmq","wn-drawer":"thqf-zacrj","wn-drawer-auth":"thqf-ghjdb","wn-drawer-close":"thqf-xmwqh","wn-drawer-item":"thqf-svbst","wn-drawer-logo":"thqf-rcqjg","wn-drawer-nav":"thqf-cxref","wn-drawer-panel":"thqf-xfchd","wn-drawer-scrim":"thqf-fbakz","wn-faq":"thqf-ggtsg","wn-faq-item":"thqf-bhqts","wn-footer":"thqf-mgbaw","wn-footer-inner":"thqf-dtvax","wn-footer-logo":"thqf-sfnka","wn-footer-nav":"thqf-yeadr","wn-header":"thqf-dwjms","wn-header-inner":"thqf-fbvan","wn-logo":"thqf-phzpw","wn-logo-mark":"thqf-pfzjq","wn-logo-sub":"thqf-vtxnv","wn-logo-text":"thqf-svjrq","wn-main":"thqf-dbewr","wn-nav":"thqf-reezd","wn-nav-item":"thqf-fjhcf","wn-rg":"thqf-bjmzw","wn-submenu":"thqf-vmpcy","wn-submenu-toggle":"thqf-vered","wn-top":"thqf-rjpem","wn-visually-hidden":"thqf-pznqz"} */

/* Брендовые переменные. Перекраска (deriveBrandVarMap) заполняет РОВНО эти 12 имён из
   style.json/palette.json бренда — переменной нет в :root, значит для неё перекраска молча
   пропускается. Значения ниже = палитра донора (winstlercasinos.uk), она же дефолт шаблона.
   retint:true только у --c-accent и --c-purple: любой литерал в файле, побайтово совпавший с
   их rgb, будет перекрашен по всему файлу (грабли №2), поэтому декоративных литералов этих
   двух цветов здесь нет — всё идёт через var(). */
:root {
    --c-bg: #18150c;
    --c-surface: #2b2514;
    --c-surface-alt: #423922;
    --c-border: #534729;
    --c-text: #f2f4fa;
    --c-text-muted: #9b9a9b;
    --c-accent: #e7b33d;
    --c-accent-hover: #ebc772;
    --c-on-accent: #19140c;
    --c-purple: #e7b342;
    --c-purple-hover: #eac772;
    --c-on-purple: #1b140c;

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

    /* Высота липкой шапки — одной переменной, чтобы scroll-margin якорей не разъехался с
       реальной шапкой (грабли №20). */
    --thqf-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; }

.thqf-pznqz {
    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, 0, 1, .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); } }

.thqf-nfnyd {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 11px 21px;
    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;
}

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

.thqf-khevm { background: var(--c-accent); color: var(--c-on-accent); }
.thqf-khevm:hover { background: var(--c-accent-hover); color: var(--c-on-accent); }

.thqf-zkgzd { background: var(--c-purple); color: var(--c-on-purple); }
.thqf-zkgzd:hover { background: var(--c-purple-hover); color: var(--c-on-purple); }

.thqf-dwjms {
    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);
}

.thqf-fbvan {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 13px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 15px;
}

.thqf-makkd {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 48px;
}

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

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

.thqf-phzpw {
    display: flex;
    align-items: center;
    gap: 11px;
}

.thqf-phzpw:hover { text-decoration: none; }

.thqf-phzpw img { height: 44px; width: auto; }

.thqf-pfzjq {
    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;
}

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

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

.thqf-reezd { display: none; }

.thqf-cyxeh {
    display: flex;
    gap: 10px;
    width: 100%;
}

.thqf-cyxeh .thqf-nfnyd { flex: 1; }

.thqf-zacrj {
    position: fixed;
    inset: 0;
    z-index: 52;
    visibility: hidden;
}

.thqf-zacrj[data-open="true"] { visibility: visible; }

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

.thqf-zacrj[data-open="true"] .thqf-fbakz { opacity: 1; }

.thqf-xfchd {
    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;
}

.thqf-zacrj[data-open="true"] .thqf-xfchd { transform: translateX(0); }

.thqf-xmwqh {
    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);
}

.thqf-rcqjg {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.thqf-ghjdb {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 17px 8px 0;
}

.thqf-cxref {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 17px;
    list-style: none;
}

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

.thqf-svbst {
    position: relative;
    display: flex;
    align-items: center;
}

.thqf-svbst > a {
    flex: 1;
    min-height: 45px;
    padding: 13px 47px 14px 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
}

.thqf-svbst > a:hover { text-decoration: none; }

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

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

.thqf-vmpcy {
    display: none;
    padding: 0 11px 11px;
    list-style: none;
}

.thqf-vmpcy[data-open="true"] { display: block; }

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

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

.thqf-dbewr {
    display: flex;
    flex-direction: column;
    padding: 0 21px;
}

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

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

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

/* Крошки печатает ОБЩИЙ сниппет breadcrumbsHtml с ЛИТЕРАЛЬНЫМ классом `breadcrumbs`
   (без префикса) — клонирование его не трогает, правила обязан нести шаблон. */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    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: 4px; }
.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); }

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

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

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

.thqf-hfjxy h3 {
    margin-bottom: 11px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.thqf-hfjxy h4 {
    margin-bottom: 9px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.thqf-hfjxy h5 {
    margin-bottom: 10px;
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.4;
}

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

.thqf-hfjxy h2:not(:first-child),
.thqf-hfjxy h3:not(:first-child) { margin-top: 27px; }

.thqf-hfjxy p {
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.thqf-hfjxy ul,
.thqf-hfjxy ol {
    margin: 0 0 18px 21px;
    font-size: 0.96rem;
    line-height: 1.51;
}

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

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

.thqf-hfjxy .thqf-nfnyd { text-decoration: none; }
.thqf-hfjxy .thqf-khevm, .thqf-hfjxy .thqf-khevm:hover { color: var(--c-on-accent); }
.thqf-hfjxy .thqf-zkgzd, .thqf-hfjxy .thqf-zkgzd:hover { color: var(--c-on-purple); }

.thqf-hfjxy strong { font-weight: 700; }
.thqf-hfjxy em { font-style: italic; }

.thqf-hfjxy img { max-width: 100%; height: auto; border-radius: 13px; }

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

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

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

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

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

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

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

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

.thqf-hfjxy .xqxd-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);
}

.thqf-hfjxy .xqxd-cta,
.xqxd-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 14px 19px;
    border-radius: 16px;
    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;
}

.thqf-hfjxy .xqxd-cta:hover,
.xqxd-cta:hover { background: var(--c-accent-hover); color: var(--c-on-accent); text-decoration: none; }

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

.nzgf-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 45px;
    padding: 8px 16px;
    border-radius: 13px;
    background: var(--c-accent);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-on-accent);
}

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

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

.thqf-hfjxy .nzgf-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 10px;
    border-radius: 12px;
    background: var(--c-surface);
    list-style: none;
}

.thqf-hfjxy .nzgf-list li { margin: 0; }

.thqf-hfjxy .nzgf-list a,
.nzgf-list a {
    display: block;
    padding: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    text-decoration: none;
}

.thqf-hfjxy .nzgf-list a:hover,
.nzgf-list a:hover { color: var(--c-accent); }

.thqf-ggtsg { padding-top: 13px; }

.thqf-bhqts {
    margin-bottom: 18px;
    padding: 14px 18px 24px;
    border-radius: 16px;
    background: var(--c-surface);
}

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

.thqf-bhqts p:last-child { margin-bottom: 0; }

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

.thqf-dtvax {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 16px;
    text-align: center;
}

.thqf-yeadr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    list-style: none;
}

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

.thqf-yeadr a:hover { color: var(--c-accent); }

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

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

.thqf-bjmzw {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 19px;
}

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

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

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

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

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

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

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

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

.grsc-actions { display: flex; flex-wrap: wrap; gap: 6px; }

.grsc-btn {
    flex: 1 1 auto;
    min-height: 45px;
    padding: 12px 19px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

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

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

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

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

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

.grsc-categories { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }

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

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

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

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

.grsc-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;
}

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

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

@media (min-width: 768px) {
    .thqf-yeadr { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 17px 31px; }
    /* wrap обязателен: бейджей стало до семи, в один ряд они влезают только на широком
       десктопе, а на планшете иначе вылезали бы за контейнер. */
    .thqf-bjmzw { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 15px 23px; }
    .xqxd-media img { aspect-ratio: 16 / 6.5; }
    .grsc-banner { flex-direction: row; align-items: center; gap: 21px; }
    .grsc-actions { flex: none; }
    .grsc-btn { flex: none; }
}

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

    .thqf-fbvan {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 13px;
        padding: 8px 21px;
    }

    .thqf-makkd { width: auto; justify-content: flex-start; }
    .thqf-wqzct { display: none; }
    .thqf-zacrj { display: none; }

    .thqf-phzpw img { height: 36px; }

    .thqf-reezd {
        display: flex;
        flex: 1;
        justify-content: center;
        gap: 22px;
        list-style: none;
    }

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

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

    .thqf-fjhcf > a:hover { color: var(--c-accent); }

    .thqf-fjhcf > .thqf-vered {
        position: static;
        width: 24px;
        height: 24px;
        margin: 0;
        background: none;
        color: var(--c-text);
    }

    .thqf-fjhcf > .thqf-vered svg { width: 24px; height: 24px; }

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

    .thqf-reezd .thqf-vmpcy a { white-space: nowrap; }
    .thqf-reezd .thqf-vmpcy li:first-child a { border-top: 0; }

    .thqf-cyxeh { width: auto; }
    .thqf-cyxeh .thqf-nfnyd { flex: none; min-width: 100px; min-height: 42px; padding: 10px 15px; }

    .thqf-dbewr { padding: 0 23px; }

    .thqf-hfjxy table { display: table; }

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

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

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

    .thqf-rjpem { right: 32px; bottom: 32px; }
}

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

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

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