/* Uniqueified: 42c0ecbb */
/* Prefix: vgwc- */
/* Prefixes-map: wn->vgwc */
/* Widget-prefixes: {"cb":"emhp","wb":"qphj","wt":"aqes","ms":"vjwe","fl":"szgm","lm":"swce","rv":"hraf"} */
/* Classmap: {"wn-age":"vgwc-pgaaf","wn-auth":"vgwc-capnr","wn-brand":"vgwc-exbcg","wn-btn":"vgwc-srsqb","wn-btn--accent":"vgwc-arvdh","wn-btn--soft":"vgwc-mhzdp","wn-burger":"vgwc-rnyce","wn-content":"vgwc-zkfep","wn-copy":"vgwc-nvpcf","wn-drawer":"vgwc-dpgwp","wn-drawer-auth":"vgwc-rfset","wn-drawer-close":"vgwc-ymvwp","wn-drawer-item":"vgwc-jmvza","wn-drawer-logo":"vgwc-btfks","wn-drawer-nav":"vgwc-mkgvp","wn-drawer-panel":"vgwc-pawqg","wn-drawer-scrim":"vgwc-thgqa","wn-faq":"vgwc-zgtpy","wn-faq-item":"vgwc-fvyvg","wn-footer":"vgwc-zjcjr","wn-footer-inner":"vgwc-jptrv","wn-footer-logo":"vgwc-jmtbk","wn-footer-nav":"vgwc-mhwhd","wn-header":"vgwc-svhdg","wn-header-inner":"vgwc-fdakh","wn-logo":"vgwc-dbmsf","wn-logo-mark":"vgwc-hatct","wn-logo-sub":"vgwc-wyxvg","wn-logo-text":"vgwc-kmxyg","wn-main":"vgwc-swmms","wn-nav":"vgwc-texcz","wn-nav-item":"vgwc-krjke","wn-rg":"vgwc-vtknp","wn-submenu":"vgwc-xmhxw","wn-submenu-toggle":"vgwc-krkte","wn-top":"vgwc-nhmrf","wn-visually-hidden":"vgwc-mxrgx"} */

/* Брендовые переменные. Перекраска (deriveBrandVarMap) заполняет РОВНО эти 12 имён из
   style.json/palette.json бренда — переменной нет в :root, значит для неё перекраска молча
   пропускается. Значения ниже = палитра донора (winstlercasinos.uk), она же дефолт шаблона.
   retint:true только у --c-accent и --c-purple: любой литерал в файле, побайтово совпавший с
   их rgb, будет перекрашен по всему файлу (грабли №2), поэтому декоративных литералов этих
   двух цветов здесь нет — всё идёт через var(). */
:root {
    --c-bg: #180c0a;
    --c-surface: #281719;
    --c-surface-alt: #422527;
    --c-border: #512c30;
    --c-text: #f2f1f7;
    --c-text-muted: #989799;
    --c-accent: #e7404a;
    --c-accent-hover: #ed707b;
    --c-on-accent: #000100;
    --c-purple: #e73f4c;
    --c-purple-hover: #ed727c;
    --c-on-purple: #000003;

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

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

.vgwc-mxrgx {
    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); } }

.vgwc-srsqb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 13px 18px;
    border-radius: 15px;
    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;
}

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

.vgwc-arvdh { background: var(--c-accent); color: var(--c-on-accent); }
.vgwc-arvdh:hover { background: var(--c-accent-hover); color: var(--c-on-accent); }

.vgwc-mhzdp { background: var(--c-purple); color: var(--c-on-purple); }
.vgwc-mhzdp:hover { background: var(--c-purple-hover); color: var(--c-on-purple); }

.vgwc-svhdg {
    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);
}

.vgwc-fdakh {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 16px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 9px 17px;
}

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

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

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

.vgwc-dbmsf {
    display: flex;
    align-items: center;
    gap: 11px;
}

.vgwc-dbmsf:hover { text-decoration: none; }

.vgwc-dbmsf img { height: 44px; width: auto; }

.vgwc-hatct {
    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;
}

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

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

.vgwc-texcz { display: none; }

.vgwc-capnr {
    display: flex;
    gap: 6px;
    width: 100%;
}

.vgwc-capnr .vgwc-srsqb { flex: 1; }

.vgwc-dpgwp {
    position: fixed;
    inset: 0;
    z-index: 52;
    visibility: hidden;
}

.vgwc-dpgwp[data-open="true"] { visibility: visible; }

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

.vgwc-dpgwp[data-open="true"] .vgwc-thgqa { opacity: 1; }

.vgwc-pawqg {
    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;
}

.vgwc-dpgwp[data-open="true"] .vgwc-pawqg { transform: translateX(0); }

.vgwc-ymvwp {
    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);
}

.vgwc-btfks {
    display: flex;
    justify-content: center;
    padding-top: 13px;
}

.vgwc-rfset {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 15px 9px 0;
}

.vgwc-mkgvp {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 18px;
    list-style: none;
}

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

.vgwc-jmvza {
    position: relative;
    display: flex;
    align-items: center;
}

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

.vgwc-jmvza > a:hover { text-decoration: none; }

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

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

.vgwc-xmhxw {
    display: none;
    padding: 0 9px 8px;
    list-style: none;
}

.vgwc-xmhxw[data-open="true"] { display: block; }

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

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

.vgwc-swmms {
    display: flex;
    flex-direction: column;
    padding: 0 21px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.vgwc-zkfep .vgwc-srsqb { text-decoration: none; }
.vgwc-zkfep .vgwc-arvdh, .vgwc-zkfep .vgwc-arvdh:hover { color: var(--c-on-accent); }
.vgwc-zkfep .vgwc-mhzdp, .vgwc-zkfep .vgwc-mhzdp:hover { color: var(--c-on-purple); }

.vgwc-zkfep strong { font-weight: 700; }
.vgwc-zkfep em { font-style: italic; }

.vgwc-zkfep img { max-width: 100%; height: auto; border-radius: 16px; }

.vgwc-zkfep blockquote {
    margin: 0 0 18px;
    padding: 14px 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). */
.vgwc-zkfep 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;
}

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

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

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

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

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

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

.vgwc-zkfep .qphj-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);
}

.vgwc-zkfep .qphj-cta,
.qphj-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 14px 22px;
    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;
}

.vgwc-zkfep .qphj-cta:hover,
.qphj-cta:hover { background: var(--c-accent-hover); color: var(--c-on-accent); text-decoration: none; }

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

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

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

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

.vgwc-zkfep .aqes-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 13px;
    border-radius: 16px;
    background: var(--c-surface);
    list-style: none;
}

.vgwc-zkfep .aqes-list li { margin: 0; }

.vgwc-zkfep .aqes-list a,
.aqes-list a {
    display: block;
    padding: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    text-decoration: none;
}

.vgwc-zkfep .aqes-list a:hover,
.aqes-list a:hover { color: var(--c-accent); }

.vgwc-zgtpy { padding-top: 13px; }

.vgwc-fvyvg {
    margin-bottom: 17px;
    padding: 15px 22px 24px;
    border-radius: 12px;
    background: var(--c-surface);
}

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

.vgwc-fvyvg p:last-child { margin-bottom: 0; }

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

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

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

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

.vgwc-mhwhd a:hover { color: var(--c-accent); }

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

.vgwc-pgaaf {
    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;
}

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

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

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

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

.vgwc-nhmrf {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.emhp-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; }

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

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

    .vgwc-fdakh {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 13px;
        padding: 12px 20px;
    }

    .vgwc-exbcg { width: auto; justify-content: flex-start; }
    .vgwc-rnyce { display: none; }
    .vgwc-dpgwp { display: none; }

    .vgwc-dbmsf img { height: 36px; }

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

    .vgwc-krjke { position: relative; display: flex; align-items: center; gap: 6px; }

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

    .vgwc-krjke > a:hover { color: var(--c-accent); }

    .vgwc-krjke > .vgwc-krkte {
        position: static;
        width: 24px;
        height: 24px;
        margin: 0;
        background: none;
        color: var(--c-text);
    }

    .vgwc-krjke > .vgwc-krkte svg { width: 24px; height: 24px; }

    .vgwc-texcz .vgwc-xmhxw {
        position: absolute;
        top: 100%;
        left: 50%;
        min-width: 200px;
        margin-top: 9px;
        padding: 3px 14px 7px;
        border: 1px solid color-mix(in srgb, var(--c-text) 10%, transparent);
        border-radius: 16px;
        background: var(--c-surface-alt);
        transform: translateX(-50%);
    }

    .vgwc-texcz .vgwc-xmhxw a { white-space: nowrap; }
    .vgwc-texcz .vgwc-xmhxw li:first-child a { border-top: 0; }

    .vgwc-capnr { width: auto; }
    .vgwc-capnr .vgwc-srsqb { flex: none; min-width: 100px; min-height: 42px; padding: 10px 11px; }

    .vgwc-swmms { padding: 0 26px; }

    .vgwc-zkfep table { display: table; }

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

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

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

    .vgwc-nhmrf { right: 32px; bottom: 32px; }
}

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

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

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