/* Uniqueified: 2be90661 */
/* Prefix: vbnm- */
/* Prefixes-map: wn->vbnm */
/* Widget-prefixes: {"cb":"tyqx","wb":"qecd","wt":"epxj","ms":"nqxq","fl":"crvp","lm":"tvqe","rv":"bvbz"} */
/* Classmap: {"wn-age":"vbnm-wmyme","wn-auth":"vbnm-wcqkd","wn-brand":"vbnm-eqjdn","wn-btn":"vbnm-nercy","wn-btn--accent":"vbnm-tqmrh","wn-btn--soft":"vbnm-jbzbx","wn-burger":"vbnm-dqzrz","wn-content":"vbnm-fkfey","wn-copy":"vbnm-mrfeh","wn-drawer":"vbnm-gehbv","wn-drawer-auth":"vbnm-xtzwc","wn-drawer-close":"vbnm-rswxq","wn-drawer-item":"vbnm-cdcrc","wn-drawer-logo":"vbnm-xtgyq","wn-drawer-nav":"vbnm-acxdk","wn-drawer-panel":"vbnm-yrfma","wn-drawer-scrim":"vbnm-fygrj","wn-faq":"vbnm-hyxxk","wn-faq-item":"vbnm-nghkm","wn-footer":"vbnm-gbkjt","wn-footer-inner":"vbnm-bawgr","wn-footer-logo":"vbnm-jvzfx","wn-footer-nav":"vbnm-zwbth","wn-header":"vbnm-xerbc","wn-header-inner":"vbnm-qbprk","wn-logo":"vbnm-nggve","wn-logo-mark":"vbnm-rpgzp","wn-logo-sub":"vbnm-dzqem","wn-logo-text":"vbnm-ebjnt","wn-main":"vbnm-vrkgq","wn-nav":"vbnm-shwak","wn-nav-item":"vbnm-drwqw","wn-rg":"vbnm-bktez","wn-submenu":"vbnm-eedjk","wn-submenu-toggle":"vbnm-hjrbp","wn-top":"vbnm-qters","wn-visually-hidden":"vbnm-sxfde"} */

/* Брендовые переменные. Перекраска (deriveBrandVarMap) заполняет РОВНО эти 12 имён из
   style.json/palette.json бренда — переменной нет в :root, значит для неё перекраска молча
   пропускается. Значения ниже = палитра донора (winstlercasinos.uk), она же дефолт шаблона.
   retint:true только у --c-accent и --c-purple: любой литерал в файле, побайтово совпавший с
   их rgb, будет перекрашен по всему файлу (грабли №2), поэтому декоративных литералов этих
   двух цветов здесь нет — всё идёт через var(). */
:root {
    --c-bg: #111315;
    --c-surface: #232527;
    --c-surface-alt: #33343d;
    --c-border: #3f424a;
    --c-text: #f2f4f5;
    --c-text-muted: #989a9f;
    --c-accent: #ffd10f;
    --c-accent-hover: #fedc4a;
    --c-on-accent: #101318;
    --c-purple: #ffd212;
    --c-purple-hover: #fcdc4a;
    --c-on-purple: #111315;

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

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

.vbnm-sxfde {
    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(1, 0, 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); } }

.vbnm-nercy {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 10px 18px;
    border-radius: 12px;
    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;
}

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

.vbnm-tqmrh { background: var(--c-accent); color: var(--c-on-accent); }
.vbnm-tqmrh:hover { background: var(--c-accent-hover); color: var(--c-on-accent); }

.vbnm-jbzbx { background: var(--c-purple); color: var(--c-on-purple); }
.vbnm-jbzbx:hover { background: var(--c-purple-hover); color: var(--c-on-purple); }

.vbnm-xerbc {
    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);
}

.vbnm-qbprk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 17px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 11px 14px;
}

.vbnm-eqjdn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
}

.vbnm-dqzrz {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 45px;
    padding: 14px 3px;
}

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

.vbnm-nggve {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vbnm-nggve:hover { text-decoration: none; }

.vbnm-nggve img { height: 44px; width: auto; }

.vbnm-rpgzp {
    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;
}

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

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

.vbnm-shwak { display: none; }

.vbnm-wcqkd {
    display: flex;
    gap: 7px;
    width: 100%;
}

.vbnm-wcqkd .vbnm-nercy { flex: 1; }

.vbnm-gehbv {
    position: fixed;
    inset: 0;
    z-index: 52;
    visibility: hidden;
}

.vbnm-gehbv[data-open="true"] { visibility: visible; }

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

.vbnm-gehbv[data-open="true"] .vbnm-fygrj { opacity: 1; }

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

.vbnm-gehbv[data-open="true"] .vbnm-yrfma { transform: translateX(0); }

.vbnm-rswxq {
    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);
}

.vbnm-xtgyq {
    display: flex;
    justify-content: center;
    padding-top: 13px;
}

.vbnm-xtzwc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 12px 0;
}

.vbnm-acxdk {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 15px;
    list-style: none;
}

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

.vbnm-cdcrc {
    position: relative;
    display: flex;
    align-items: center;
}

.vbnm-cdcrc > a {
    flex: 1;
    min-height: 45px;
    padding: 10px 47px 10px 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
}

.vbnm-cdcrc > a:hover { text-decoration: none; }

.vbnm-hjrbp {
    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;
}

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

.vbnm-eedjk {
    display: none;
    padding: 0 12px 11px;
    list-style: none;
}

.vbnm-eedjk[data-open="true"] { display: block; }

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

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

.vbnm-vrkgq {
    display: flex;
    flex-direction: column;
    padding: 0 21px;
}

.vbnm-fkfey {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    padding: 13px 0;
}

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

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

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

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

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

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

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

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

.vbnm-fkfey h5 {
    margin-bottom: 6px;
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.4;
}

.vbnm-fkfey 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);
}

.vbnm-fkfey h2:not(:first-child),
.vbnm-fkfey h3:not(:first-child) { margin-top: 28px; }

.vbnm-fkfey p {
    margin-bottom: 17px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.vbnm-fkfey ul,
.vbnm-fkfey ol {
    margin: 0 0 14px 18px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.vbnm-fkfey li { margin-bottom: 7px; }
.vbnm-fkfey li::marker { color: var(--c-accent); }

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

.vbnm-fkfey .vbnm-nercy { text-decoration: none; }
.vbnm-fkfey .vbnm-tqmrh, .vbnm-fkfey .vbnm-tqmrh:hover { color: var(--c-on-accent); }
.vbnm-fkfey .vbnm-jbzbx, .vbnm-fkfey .vbnm-jbzbx:hover { color: var(--c-on-purple); }

.vbnm-fkfey strong { font-weight: 700; }
.vbnm-fkfey em { font-style: italic; }

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

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

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

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

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

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

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

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

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

.vbnm-fkfey .qecd-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);
}

.vbnm-fkfey .qecd-cta,
.qecd-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 11px 22px;
    border-radius: 12px;
    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;
}

.vbnm-fkfey .qecd-cta:hover,
.qecd-cta:hover { background: var(--c-accent-hover); color: var(--c-on-accent); text-decoration: none; }

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

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

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

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

.vbnm-fkfey .epxj-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
    padding: 10px;
    border-radius: 15px;
    background: var(--c-surface);
    list-style: none;
}

.vbnm-fkfey .epxj-list li { margin: 0; }

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

.vbnm-fkfey .epxj-list a:hover,
.epxj-list a:hover { color: var(--c-accent); }

.vbnm-hyxxk { padding-top: 14px; }

.vbnm-nghkm {
    margin-bottom: 18px;
    padding: 14px 18px 24px;
    border-radius: 13px;
    background: var(--c-surface);
}

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

.vbnm-nghkm p:last-child { margin-bottom: 0; }

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

.vbnm-bawgr {
    max-width: 1240px;
    margin: 0 auto;
    padding: 21px 14px;
    text-align: center;
}

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

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

.vbnm-zwbth a:hover { color: var(--c-accent); }

.vbnm-jvzfx { display: flex; justify-content: center; margin-bottom: 19px; }
.vbnm-jvzfx img { height: 40px; width: auto; }

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

.vbnm-bktez {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
}

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

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

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

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

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

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

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

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

.tyqx-actions { display: flex; flex-wrap: wrap; gap: 9px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.tyqx-modal__actions { display: flex; flex-wrap: wrap; gap: 6px; }

@media (min-width: 768px) {
    .vbnm-zwbth { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 17px 30px; }
    /* wrap обязателен: бейджей стало до семи, в один ряд они влезают только на широком
       десктопе, а на планшете иначе вылезали бы за контейнер. */
    .vbnm-bktez { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 17px 20px; }
    .qecd-media img { aspect-ratio: 16 / 6.5; }
    .tyqx-banner { flex-direction: row; align-items: center; gap: 18px; }
    .tyqx-actions { flex: none; }
    .tyqx-btn { flex: none; }
}

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

    .vbnm-qbprk {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 17px;
        padding: 8px 21px;
    }

    .vbnm-eqjdn { width: auto; justify-content: flex-start; }
    .vbnm-dqzrz { display: none; }
    .vbnm-gehbv { display: none; }

    .vbnm-nggve img { height: 36px; }

    .vbnm-shwak {
        display: flex;
        flex: 1;
        justify-content: center;
        gap: 18px;
        list-style: none;
    }

    .vbnm-drwqw { position: relative; display: flex; align-items: center; gap: 3px; }

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

    .vbnm-drwqw > a:hover { color: var(--c-accent); }

    .vbnm-drwqw > .vbnm-hjrbp {
        position: static;
        width: 24px;
        height: 24px;
        margin: 0;
        background: none;
        color: var(--c-text);
    }

    .vbnm-drwqw > .vbnm-hjrbp svg { width: 24px; height: 24px; }

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

    .vbnm-shwak .vbnm-eedjk a { white-space: nowrap; }
    .vbnm-shwak .vbnm-eedjk li:first-child a { border-top: 0; }

    .vbnm-wcqkd { width: auto; }
    .vbnm-wcqkd .vbnm-nercy { flex: none; min-width: 100px; min-height: 42px; padding: 13px 14px; }

    .vbnm-vrkgq { padding: 0 23px; }

    .vbnm-fkfey table { display: table; }

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

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

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

    .vbnm-qters { right: 32px; bottom: 32px; }
}

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

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

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