/* Uniqueified: 11018d86 */
/* Prefix: agyq- */
/* Prefixes-map: wn->agyq */
/* Widget-prefixes: {"cb":"xnvp","wb":"ktvh","wt":"tzdy","ms":"fjtd","fl":"ezxm","lm":"zebb","rv":"nzcm"} */
/* Classmap: {"wn-age":"agyq-qeqbb","wn-auth":"agyq-kyqqq","wn-brand":"agyq-nbkdk","wn-btn":"agyq-agmee","wn-btn--accent":"agyq-gfsre","wn-btn--soft":"agyq-gktvz","wn-burger":"agyq-whftn","wn-content":"agyq-qmtja","wn-copy":"agyq-zvqaq","wn-drawer":"agyq-vcqxn","wn-drawer-auth":"agyq-jwcmf","wn-drawer-close":"agyq-dprgq","wn-drawer-item":"agyq-haqsc","wn-drawer-logo":"agyq-xnaam","wn-drawer-nav":"agyq-qqffx","wn-drawer-panel":"agyq-nczap","wn-drawer-scrim":"agyq-rqtnx","wn-faq":"agyq-hvbhn","wn-faq-item":"agyq-kfzfw","wn-footer":"agyq-sammf","wn-footer-inner":"agyq-mypza","wn-footer-logo":"agyq-qjzyf","wn-footer-nav":"agyq-kpccq","wn-header":"agyq-jfmjf","wn-header-inner":"agyq-xabat","wn-logo":"agyq-agttb","wn-logo-mark":"agyq-hkekx","wn-logo-sub":"agyq-tcmry","wn-logo-text":"agyq-rvxjd","wn-main":"agyq-mdvzf","wn-nav":"agyq-fkpmz","wn-nav-item":"agyq-rjvcy","wn-rg":"agyq-bgsgk","wn-submenu":"agyq-vkqdf","wn-submenu-toggle":"agyq-apphh","wn-top":"agyq-mnrhj","wn-visually-hidden":"agyq-vwhrj"} */

/* Брендовые переменные. Перекраска (deriveBrandVarMap) заполняет РОВНО эти 12 имён из
   style.json/palette.json бренда — переменной нет в :root, значит для неё перекраска молча
   пропускается. Значения ниже = палитра донора (winstlercasinos.uk), она же дефолт шаблона.
   retint:true только у --c-accent и --c-purple: любой литерал в файле, побайтово совпавший с
   их rgb, будет перекрашен по всему файлу (грабли №2), поэтому декоративных литералов этих
   двух цветов здесь нет — всё идёт через var(). */
:root {
    --c-bg: #0c1a0c;
    --c-surface: #172b17;
    --c-surface-alt: #204225;
    --c-border: #2c512e;
    --c-text: #f2f5f7;
    --c-text-muted: #969c9a;
    --c-accent: #40e74b;
    --c-accent-hover: #70ed78;
    --c-on-accent: #0c190c;
    --c-purple: #3fe749;
    --c-purple-hover: #71ed78;
    --c-on-purple: #0e180c;

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

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

.agyq-vwhrj {
    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); } }

.agyq-agmee {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 14px 22px;
    border-radius: 16px;
    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;
}

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

.agyq-gfsre { background: var(--c-accent); color: var(--c-on-accent); }
.agyq-gfsre:hover { background: var(--c-accent-hover); color: var(--c-on-accent); }

.agyq-gktvz { background: var(--c-purple); color: var(--c-on-purple); }
.agyq-gktvz:hover { background: var(--c-purple-hover); color: var(--c-on-purple); }

.agyq-jfmjf {
    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);
}

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

.agyq-nbkdk {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    min-height: 48px;
}

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

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

.agyq-agttb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agyq-agttb:hover { text-decoration: none; }

.agyq-agttb img { height: 44px; width: auto; }

.agyq-hkekx {
    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;
}

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

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

.agyq-fkpmz { display: none; }

.agyq-kyqqq {
    display: flex;
    gap: 9px;
    width: 100%;
}

.agyq-kyqqq .agyq-agmee { flex: 1; }

.agyq-vcqxn {
    position: fixed;
    inset: 0;
    z-index: 52;
    visibility: hidden;
}

.agyq-vcqxn[data-open="true"] { visibility: visible; }

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

.agyq-vcqxn[data-open="true"] .agyq-rqtnx { opacity: 1; }

.agyq-nczap {
    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;
}

.agyq-vcqxn[data-open="true"] .agyq-nczap { transform: translateX(0); }

.agyq-dprgq {
    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);
}

.agyq-xnaam {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.agyq-jwcmf {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px 0;
}

.agyq-qqffx {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    list-style: none;
}

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

.agyq-haqsc {
    position: relative;
    display: flex;
    align-items: center;
}

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

.agyq-haqsc > a:hover { text-decoration: none; }

.agyq-apphh {
    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;
}

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

.agyq-vkqdf {
    display: none;
    padding: 0 8px 9px;
    list-style: none;
}

.agyq-vkqdf[data-open="true"] { display: block; }

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

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

.agyq-mdvzf {
    display: flex;
    flex-direction: column;
    padding: 0 21px;
}

.agyq-qmtja {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    padding: 17px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.agyq-qmtja ul,
.agyq-qmtja ol {
    margin: 0 0 18px 19px;
    font-size: 0.96rem;
    line-height: 1.51;
}

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

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

.agyq-qmtja .agyq-agmee { text-decoration: none; }
.agyq-qmtja .agyq-gfsre, .agyq-qmtja .agyq-gfsre:hover { color: var(--c-on-accent); }
.agyq-qmtja .agyq-gktvz, .agyq-qmtja .agyq-gktvz:hover { color: var(--c-on-purple); }

.agyq-qmtja strong { font-weight: 700; }
.agyq-qmtja em { font-style: italic; }

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

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

/* Таблицы приезжают из [[*content]] БЕЗ обёртки, поэтому скролл-контейнером на мобиле
   становится сама таблица. min-width здесь ставить нельзя — он даёт горизонтальный скролл
   всей страницы (грабли №7). */
.agyq-qmtja 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;
}

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

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

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

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

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

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

.agyq-qmtja .ktvh-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);
}

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

.agyq-qmtja .ktvh-cta:hover,
.ktvh-cta:hover { background: var(--c-accent-hover); color: var(--c-on-accent); text-decoration: none; }

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

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

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

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

.agyq-qmtja .tzdy-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 11px;
    border-radius: 16px;
    background: var(--c-surface);
    list-style: none;
}

.agyq-qmtja .tzdy-list li { margin: 0; }

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

.agyq-qmtja .tzdy-list a:hover,
.tzdy-list a:hover { color: var(--c-accent); }

.agyq-hvbhn { padding-top: 16px; }

.agyq-kfzfw {
    margin-bottom: 15px;
    padding: 17px 19px 24px;
    border-radius: 16px;
    background: var(--c-surface);
}

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

.agyq-kfzfw p:last-child { margin-bottom: 0; }

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

.agyq-mypza {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 14px;
    text-align: center;
}

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

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

.agyq-kpccq a:hover { color: var(--c-accent); }

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

.agyq-qeqbb {
    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;
}

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

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

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

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

.agyq-mnrhj {
    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;
}

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

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

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

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

.xnvp-actions { display: flex; flex-wrap: wrap; gap: 10px; }

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

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

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

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

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

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

.xnvp-categories { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

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

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

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

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

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

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

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

@media (min-width: 768px) {
    .agyq-kpccq { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 18px 34px; }
    /* wrap обязателен: бейджей стало до семи, в один ряд они влезают только на широком
       десктопе, а на планшете иначе вылезали бы за контейнер. */
    .agyq-bgsgk { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 15px 24px; }
    .ktvh-media img { aspect-ratio: 16 / 6.5; }
    .xnvp-banner { flex-direction: row; align-items: center; gap: 19px; }
    .xnvp-actions { flex: none; }
    .xnvp-btn { flex: none; }
}

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

    .agyq-xabat {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 16px;
        padding: 11px 24px;
    }

    .agyq-nbkdk { width: auto; justify-content: flex-start; }
    .agyq-whftn { display: none; }
    .agyq-vcqxn { display: none; }

    .agyq-agttb img { height: 36px; }

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

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

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

    .agyq-rjvcy > a:hover { color: var(--c-accent); }

    .agyq-rjvcy > .agyq-apphh {
        position: static;
        width: 24px;
        height: 24px;
        margin: 0;
        background: none;
        color: var(--c-text);
    }

    .agyq-rjvcy > .agyq-apphh svg { width: 24px; height: 24px; }

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

    .agyq-fkpmz .agyq-vkqdf a { white-space: nowrap; }
    .agyq-fkpmz .agyq-vkqdf li:first-child a { border-top: 0; }

    .agyq-kyqqq { width: auto; }
    .agyq-kyqqq .agyq-agmee { flex: none; min-width: 100px; min-height: 42px; padding: 10px 15px; }

    .agyq-mdvzf { padding: 0 23px; }

    .agyq-qmtja table { display: table; }

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

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

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

    .agyq-mnrhj { right: 32px; bottom: 32px; }
}

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

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

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