/* Uniqueified: 357f0c1e */
/* Prefix: hrwn- */
/* Prefixes-map: wn->hrwn */
/* Widget-prefixes: {"cb":"bgre","wb":"xsnn","wt":"wbnm","ms":"wcxa","fl":"gqzp","lm":"cawg","rv":"absk"} */
/* Classmap: {"wn-age":"hrwn-axnfm","wn-auth":"hrwn-yvtkb","wn-brand":"hrwn-qpvay","wn-btn":"hrwn-ekndn","wn-btn--accent":"hrwn-aqszc","wn-btn--soft":"hrwn-sxkfb","wn-burger":"hrwn-hjgda","wn-content":"hrwn-sjmzy","wn-copy":"hrwn-dpkjn","wn-drawer":"hrwn-dchpf","wn-drawer-auth":"hrwn-veqtm","wn-drawer-close":"hrwn-pmvvb","wn-drawer-item":"hrwn-cvanp","wn-drawer-logo":"hrwn-vgqfq","wn-drawer-nav":"hrwn-nndvz","wn-drawer-panel":"hrwn-bnway","wn-drawer-scrim":"hrwn-dkqvs","wn-faq":"hrwn-dyfnh","wn-faq-item":"hrwn-agvrm","wn-footer":"hrwn-acsmv","wn-footer-inner":"hrwn-yabwh","wn-footer-logo":"hrwn-nawbd","wn-footer-nav":"hrwn-tvwfr","wn-header":"hrwn-hadah","wn-header-inner":"hrwn-dnfvz","wn-logo":"hrwn-xyvfp","wn-logo-mark":"hrwn-phqcx","wn-logo-sub":"hrwn-yndmj","wn-logo-text":"hrwn-pbkrt","wn-main":"hrwn-bsrpa","wn-nav":"hrwn-wwdzr","wn-nav-item":"hrwn-vywbh","wn-rg":"hrwn-zpryd","wn-submenu":"hrwn-pawks","wn-submenu-toggle":"hrwn-cngef","wn-top":"hrwn-rqhxy","wn-visually-hidden":"hrwn-eetvg"} */

/* Брендовые переменные. Перекраска (deriveBrandVarMap) заполняет РОВНО эти 12 имён из
   style.json/palette.json бренда — переменной нет в :root, значит для неё перекраска молча
   пропускается. Значения ниже = палитра донора (winstlercasinos.uk), она же дефолт шаблона.
   retint:true только у --c-accent и --c-purple: любой литерал в файле, побайтово совпавший с
   их rgb, будет перекрашен по всему файлу (грабли №2), поэтому декоративных литералов этих
   двух цветов здесь нет — всё идёт через var(). */
:root {
    --c-bg: #2b2a27;
    --c-surface: #3d3a3a;
    --c-surface-alt: #4f4e48;
    --c-border: #5c5e58;
    --c-text: #f2f6f7;
    --c-text-muted: #a2a0a4;
    --c-accent: #4c8eff;
    --c-accent-hover: #84b4ff;
    --c-on-accent: #010000;
    --c-purple: #4f8dff;
    --c-purple-hover: #86b1ff;
    --c-on-purple: #000001;

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

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

.hrwn-eetvg {
    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); } }

.hrwn-ekndn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 13px 22px;
    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;
}

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

.hrwn-aqszc { background: var(--c-accent); color: var(--c-on-accent); }
.hrwn-aqszc:hover { background: var(--c-accent-hover); color: var(--c-on-accent); }

.hrwn-sxkfb { background: var(--c-purple); color: var(--c-on-purple); }
.hrwn-sxkfb:hover { background: var(--c-purple-hover); color: var(--c-on-purple); }

.hrwn-hadah {
    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);
}

.hrwn-dnfvz {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 18px;
}

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

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

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

.hrwn-xyvfp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hrwn-xyvfp:hover { text-decoration: none; }

.hrwn-xyvfp img { height: 44px; width: auto; }

.hrwn-phqcx {
    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;
}

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

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

.hrwn-wwdzr { display: none; }

.hrwn-yvtkb {
    display: flex;
    gap: 9px;
    width: 100%;
}

.hrwn-yvtkb .hrwn-ekndn { flex: 1; }

.hrwn-dchpf {
    position: fixed;
    inset: 0;
    z-index: 52;
    visibility: hidden;
}

.hrwn-dchpf[data-open="true"] { visibility: visible; }

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

.hrwn-dchpf[data-open="true"] .hrwn-dkqvs { opacity: 1; }

.hrwn-bnway {
    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;
}

.hrwn-dchpf[data-open="true"] .hrwn-bnway { transform: translateX(0); }

.hrwn-pmvvb {
    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);
}

.hrwn-vgqfq {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.hrwn-veqtm {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 12px 0;
}

.hrwn-nndvz {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    list-style: none;
}

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

.hrwn-cvanp {
    position: relative;
    display: flex;
    align-items: center;
}

.hrwn-cvanp > a {
    flex: 1;
    min-height: 45px;
    padding: 14px 48px 10px 17px;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
}

.hrwn-cvanp > a:hover { text-decoration: none; }

.hrwn-cngef {
    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;
}

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

.hrwn-pawks {
    display: none;
    padding: 0 8px 8px;
    list-style: none;
}

.hrwn-pawks[data-open="true"] { display: block; }

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

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

.hrwn-bsrpa {
    display: flex;
    flex-direction: column;
    padding: 0 19px;
}

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

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

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

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

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

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

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

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

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

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

.hrwn-sjmzy 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);
}

.hrwn-sjmzy h2:not(:first-child),
.hrwn-sjmzy h3:not(:first-child) { margin-top: 24px; }

.hrwn-sjmzy p {
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.hrwn-sjmzy ul,
.hrwn-sjmzy ol {
    margin: 0 0 17px 19px;
    font-size: 0.96rem;
    line-height: 1.51;
}

.hrwn-sjmzy li { margin-bottom: 8px; }
.hrwn-sjmzy li::marker { color: var(--c-accent); }

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

.hrwn-sjmzy .hrwn-ekndn { text-decoration: none; }
.hrwn-sjmzy .hrwn-aqszc, .hrwn-sjmzy .hrwn-aqszc:hover { color: var(--c-on-accent); }
.hrwn-sjmzy .hrwn-sxkfb, .hrwn-sjmzy .hrwn-sxkfb:hover { color: var(--c-on-purple); }

.hrwn-sjmzy strong { font-weight: 700; }
.hrwn-sjmzy em { font-style: italic; }

.hrwn-sjmzy img { max-width: 100%; height: auto; border-radius: 15px; }

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

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

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

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

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

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

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

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

.hrwn-sjmzy .xsnn-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);
}

.hrwn-sjmzy .xsnn-cta,
.xsnn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 11px 19px;
    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;
}

.hrwn-sjmzy .xsnn-cta:hover,
.xsnn-cta:hover { background: var(--c-accent-hover); color: var(--c-on-accent); text-decoration: none; }

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

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

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

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

.hrwn-sjmzy .wbnm-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 14px;
    border-radius: 16px;
    background: var(--c-surface);
    list-style: none;
}

.hrwn-sjmzy .wbnm-list li { margin: 0; }

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

.hrwn-sjmzy .wbnm-list a:hover,
.wbnm-list a:hover { color: var(--c-accent); }

.hrwn-dyfnh { padding-top: 14px; }

.hrwn-agvrm {
    margin-bottom: 15px;
    padding: 15px 21px 27px;
    border-radius: 12px;
    background: var(--c-surface);
}

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

.hrwn-agvrm p:last-child { margin-bottom: 0; }

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

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

.hrwn-tvwfr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    list-style: none;
}

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

.hrwn-tvwfr a:hover { color: var(--c-accent); }

.hrwn-nawbd { display: flex; justify-content: center; margin-bottom: 20px; }
.hrwn-nawbd img { height: 40px; width: auto; }

.hrwn-axnfm {
    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;
}

.hrwn-zpryd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

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

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

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

.hrwn-rqhxy {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bgre-modal__actions { display: flex; flex-wrap: wrap; gap: 9px; }

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

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

    .hrwn-dnfvz {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 14px;
        padding: 11px 24px;
    }

    .hrwn-qpvay { width: auto; justify-content: flex-start; }
    .hrwn-hjgda { display: none; }
    .hrwn-dchpf { display: none; }

    .hrwn-xyvfp img { height: 36px; }

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

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

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

    .hrwn-vywbh > a:hover { color: var(--c-accent); }

    .hrwn-vywbh > .hrwn-cngef {
        position: static;
        width: 24px;
        height: 24px;
        margin: 0;
        background: none;
        color: var(--c-text);
    }

    .hrwn-vywbh > .hrwn-cngef svg { width: 24px; height: 24px; }

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

    .hrwn-wwdzr .hrwn-pawks a { white-space: nowrap; }
    .hrwn-wwdzr .hrwn-pawks li:first-child a { border-top: 0; }

    .hrwn-yvtkb { width: auto; }
    .hrwn-yvtkb .hrwn-ekndn { flex: none; min-width: 100px; min-height: 42px; padding: 14px 11px; }

    .hrwn-bsrpa { padding: 0 23px; }

    .hrwn-sjmzy table { display: table; }

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

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

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

    .hrwn-rqhxy { right: 32px; bottom: 32px; }
}

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

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

/* LastModified #302 [Base] 3 — плашка на фоне, дата крупнее подписи и стоит ПЕРВОЙ.
   Дописывать В КОНЕЦ assets/css/wn.min.css.
   Структура третья: div > time + span, порядок «дата → подпись» обратный остальным двум. */
.cawg-plate{display:inline-block;margin:18px 0 18px;padding:9px 18px;border-left:3px solid #3d80ff;border-radius:9px;background:#141d2b}
.cawg-big{display:block;font-size:19px;font-weight:700;line-height:1.2;color:#eef2f8}
.cawg-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 #34373b, border #33323c, accent #f5e83a,
   muted #b9b4bb, радиус 14px — доминирующий у этой темы (13 из 26 правил). */
.absk-wrap{margin:33px 0}
.absk-cap{font-size:26px;line-height:1.3;margin:0 0 17px;color:#fffdfc}
.absk-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px;list-style:none;margin:0;padding:0}
.absk-tile{background:#343439;border:1px solid #33333b;border-radius:15px;padding:17px 16px 16px}
.absk-score{display:block;color:#f5e938;font-size:34px;line-height:1;font-weight:700;margin-bottom:9px}
.absk-say{color:#fcfdfe;font-size:14px;line-height:1.6;margin:0 0 14px}
.absk-sig{color:#bbb7bb;font-size:12px;border-top:1px solid #33333f;padding-top:12px}
@media (max-width:700px){.absk-grid{grid-template-columns:1fr}}
