/* Uniqueified: 1e332998 */
/* Prefix: xpq- */
/* Prefixes-map: wz->xpq */
/* Widget-prefixes: {"cb":"aqz","wg":"man","wb":"azm","ms":"bwa","fl":"qwn"} */
/* Classmap: {"wz-back-to-top":"xpq-cnpap","wz-btn":"xpq-rcbjy","wz-btn-cta":"xpq-czbcd","wz-btn-ghost":"xpq-djyyr","wz-btn-secondary":"xpq-sddfv","wz-content":"xpq-fxhfa","wz-el-back-to-top":"xpq-cjepd","wz-el-hamburger":"xpq-znrcy","wz-el-header":"xpq-jmxdh","wz-el-overlay":"xpq-rbbnx","wz-el-sidebar":"xpq-fysrr","wz-el-sidebar-close":"xpq-ettds","wz-faq-icon":"xpq-chnbw","wz-faq-item":"xpq-tazng","wz-footer":"xpq-xkrqc","wz-footer-badges":"xpq-hrjae","wz-footer-bottom":"xpq-ejwjt","wz-footer-chevron":"xpq-ypbwn","wz-footer-col":"xpq-xbgjk","wz-footer-copy":"xpq-pztqn","wz-footer-divider":"xpq-tysgp","wz-footer-inner":"xpq-cjnky","wz-footer-nav":"xpq-fbytr","wz-footer-social":"xpq-dkghn","wz-hamburger":"xpq-wawsj","wz-header":"xpq-gyvzj","wz-header--scrolled":"xpq-hazyy","wz-header-actions":"xpq-sppbn","wz-header-inner":"xpq-xhjjj","wz-hero":"xpq-watav","wz-hero-body":"xpq-wfrwt","wz-hero-subtitle":"xpq-dmvap","wz-hero-title":"xpq-ndkfe","wz-layout":"xpq-ffzjb","wz-logo":"xpq-vznba","wz-logo-mark":"xpq-jpazm","wz-logo-text":"xpq-kgage","wz-main":"xpq-rrhxa","wz-nav-chevron":"xpq-xjrzt","wz-nav-icon":"xpq-gwyne","wz-nav-label":"xpq-cxtsa","wz-nav-link":"xpq-yfsqx","wz-nav-list":"xpq-yaqjv","wz-promo-card":"xpq-kpafa","wz-promo-grid":"xpq-zfhwv","wz-sidebar":"xpq-nvkzm","wz-sidebar--open":"xpq-zbyjm","wz-sidebar-close":"xpq-vmvgs","wz-sidebar-overlay":"xpq-pvxca","wz-sidebar-overlay--visible":"xpq-rnqwt"} */
:root{
  --c-bg:#10100e; --c-surface:#232040; --c-surface-alt:#2c2c5a; --c-border:#34346c;
  --c-text:#c0a082; --c-text-muted:#7a6651;
  --c-accent:#bea070; --c-accent-hover:#d2ba97; --c-on-accent:#101011;
  --c-purple:#c0a170; --c-purple-hover:#ceba97; --c-on-purple:#100f10;
  --c-green:#3fe089; --c-shadow:rgba(1, 0, 0,.35);
  /* Затемнение под модалками/оверлеями. Не брендируется (нет источника в palette.json),
     но объявить обязано: без неё var(--c-overlay) не разрешается и background молча
     становится прозрачным. Значение = --c-bg с альфой, поэтому с retint не конфликтует. */
  --c-overlay:rgba(13, 18, 34,.72);
  /* Header height, shared by the header itself and the desktop sidebar's sticky offset —
     one value so the two can't drift apart. 16px padding ×2 + 45px tallest control. */
  --xpq-header-h: 77px;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}
a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
.go-link { cursor: pointer; }

/* Оверлей-спиннер на время редиректа в офферную систему.
   Разметку создаёт ОБЩИЙ go-redirect.js (`#go-overlay` > `.go-spinner`), стили обязан нести
   шаблон — у [Base] base они лежат в его CSS, и без такой же пары правил здесь клик по
   .go-link выглядел как «ничего не произошло»: скрипт ставил класс на невидимый пустой div,
   а пользователь ждал 3 секунды без единого признака, что нажатие засчитано.
   Префикс `go-` в RESERVED_PREFIXES — клонирование его НЕ переименовывает, поэтому селекторы
   здесь литеральные и совпадают с тем, что печатает скрипт. */
#go-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  /* фоллбэк на случай CSS клона, созданного до появления --c-overlay в :root */
  background: var(--c-overlay, rgba(13, 18, 33, .72));
  align-items: center;
  justify-content: center;
}
/* Селектор с ID обязателен: `#go-overlay` выше по специфичности (1,0,0), и голый
   `.go-overlay--visible{display:flex}` (0,1,0) его НЕ перебивает — оверлей остаётся
   display:none, сколько бы скрипт ни вешал класс. У [Base] base стоит ровно такой же
   селектор с ID. */
#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); } }

/* ===== Header ===== */
.xpq-gyvzj {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--c-surface);
  padding: 11px 14px;
  box-shadow: 0 4px 6px -1px rgba(0, 1, 0,0.2), 0 2px 4px -1px rgba(0, 1, 0,0.12);
}
.xpq-hazyy {
  box-shadow: 0 4px 10px -1px var(--c-shadow);
}
.xpq-xhjjj {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  max-width: 1600px;
  margin: 0 auto;
}
.xpq-wawsj {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.xpq-wawsj span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
}
.xpq-vznba {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;   /* lets the brand name truncate instead of pushing the buttons out */
  text-decoration: none;
  color: var(--c-text);
}
/* Explicit CSS height is REQUIRED, not decorative: the brand logo renders as
   <img height="36">, but the global `img{height:auto}` reset above beats the HTML attribute,
   so without this the logo drew at its intrinsic 300×91 (82px tall) and inflated the whole
   header to 114px. Same trap as the footer badges and the documented 0×0 incident. */
.xpq-jpazm { flex-shrink: 0; line-height: 0; max-height: 36px; width: auto; }
img.xpq-jpazm { height: 36px; object-fit: contain; }
.xpq-kgage {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Auth buttons live in the header at EVERY width (never folded into the mobile menu) —
   at 390px the row is hamburger(45) + logo(flex, truncates) + two compact buttons(~138). */
.xpq-sppbn { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.xpq-sppbn .xpq-rcbjy { padding: 9px 10px; font-size: 13px; }

/* ===== Buttons ===== */
.xpq-rcbjy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 8px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}
/* Login stays a neutral gray regardless of brand palette — not tied to --c-accent/--c-purple */
.xpq-djyyr { background: #9f9fa2; color: #0d1123; }
.xpq-djyyr:hover { background: #888a8a; }
.xpq-sddfv { background: var(--c-purple); color: var(--c-on-purple); }
.xpq-sddfv:hover { background: var(--c-purple-hover); }
.xpq-czbcd {
  background: var(--c-accent);
  color: var(--c-on-accent);
  border-radius: 17px;
  font-size: 18px;
  padding: 15px 25px;
  width: 100%;
}
.xpq-czbcd:hover { background: var(--c-accent-hover); }

/* ===== Sidebar overlay (mobile) ===== */
.xpq-pvxca {
  position: fixed;
  inset: 0;
  background: rgba(1, 0, 0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 45;
}
.xpq-rnqwt { opacity: 1; pointer-events: auto; }

/* ===== Layout ===== */
.xpq-ffzjb {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
}

/* ===== Sidebar ===== */
.xpq-nvkzm {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  max-width: 85vw;
  background: var(--c-surface);
  z-index: 50;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 15px 12px;
}
.xpq-zbyjm { transform: translateX(0); }
.xpq-vmvgs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  align-self: flex-end;
  color: var(--c-text);
  margin-bottom: 6px;
}
.xpq-yaqjv { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.xpq-yfsqx {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 45px;
  padding: 11px 14px;
  border-radius: 7px;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.xpq-yfsqx:hover { background: color-mix(in srgb, var(--c-text) 6%, transparent); }
.xpq-gwyne { display: flex; flex-shrink: 0; color: var(--c-text); }
.xpq-cxtsa { flex: 1; }
.xpq-xjrzt { flex-shrink: 0; color: var(--c-text-muted); }

/* ===== Main / Hero ===== */
.xpq-rrhxa { flex: 1; min-width: 0; padding: 12px; }
/* Hero glow is decorative atmosphere, intentionally NOT brand-mapped — mixing --c-accent
   and --c-purple in one gradient collapses into a flat block on palettes where they're
   near-identical (see docs/new-base-template-onboarding.md §1, HeroCard incident). */
.xpq-watav {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  padding: 34px 18px;
  /* Literal rgb here MUST NOT equal --c-accent/--c-purple's default (#ff3c3d/#00b1ef) —
     cloneTemplate()'s retintDerivedRgba() does an EXACT rgb match against every
     retint:true var and rewrites any literal that happens to coincide, even outside
     :root. Confirmed live in Phase 3: rgba(255,61,61,*)/rgba(0,180,239,*) both got
     swept into the brand's accent/purple and collapsed into one flat blob (the exact
     failure mode described above) despite intentionally not using var() here. */
  background:
    radial-gradient(circle at 15% 20%, rgba(147, 51, 235,0.32), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(219, 39, 121,0.28), transparent 50%),
    linear-gradient(135deg, #192647 0%, #0d1225 100%);
  isolation: isolate;
}
.xpq-watav::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(240, 242, 245,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
}
.xpq-wfrwt { max-width: 640px; }
.xpq-ndkfe {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.xpq-dmvap {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Breadcrumbs — printed by the shared `breadcrumbsHtml` snippet with a LITERAL `breadcrumbs`
   class (no prefix, so cloneTemplate() never renames it; styling it directly is safe). The
   snippet returns '' on the homepage, so this only ever shows on inner pages. */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.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: "/"; margin-right: 7px; color: var(--c-text-muted); }

/* ===== Content zone ===== */
.xpq-fxhfa { max-width: 900px; margin: 27px auto 0; padding: 0 7px; }
.xpq-fxhfa h1, .xpq-fxhfa h2, .xpq-fxhfa h3,
.xpq-fxhfa h4, .xpq-fxhfa h5, .xpq-fxhfa h6 {
  font-weight: 700;
  line-height: 1.25;
  margin: 27px 0 14px;
}
.xpq-fxhfa h1 { font-size: 28px; font-weight: 600; margin-top: 0; }
.xpq-fxhfa h2 { font-size: 22px; }
.xpq-fxhfa h3 { font-size: 19px; }
.xpq-fxhfa h4 { font-size: 17px; }
.xpq-fxhfa h5, .xpq-fxhfa h6 { font-size: 15px; }
.xpq-fxhfa p { margin-bottom: 13px; color: var(--c-text); }
.xpq-fxhfa ul, .xpq-fxhfa ol { margin: 0 0 13px 19px; }
.xpq-fxhfa li { margin-bottom: 8px; }
.xpq-fxhfa a { color: var(--c-purple); text-decoration: underline; }
.xpq-fxhfa a:hover { color: var(--c-accent); }
.xpq-fxhfa strong { font-weight: 700; }
.xpq-fxhfa em { font-style: italic; }
.xpq-fxhfa img { border-radius: 11px; margin: 15px 0; }
.xpq-fxhfa blockquote {
  border-left: 3px solid var(--c-accent);
  background: var(--c-surface);
  padding: 13px 17px;
  border-radius: 0 11px 9px 0;
  font-style: italic;
  color: var(--c-text-muted);
  margin: 0 0 15px;
}
/* Content comes from [[*content]] — plain HTML written by the copywriting worker, with no
   template-side wrapper elements to hang a scroll container on (and it must not use
   xpq-* classes: those are renamed per clone, a literal one in resource content would
   desync). So the table has to be self-contained: NO min-width (that forced the page
   itself to scroll sideways at 390px — caught 2026-08-11), and on narrow screens the
   table itself becomes the scroll container via display:block. */
.xpq-fxhfa table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .xpq-fxhfa table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 10px;
  }
}
.xpq-fxhfa th, .xpq-fxhfa td {
  text-align: left;
  padding: 14px 15px;
  font-size: 14px;
}
.xpq-fxhfa th { font-weight: 700; background: var(--c-bg); }
.xpq-fxhfa td { color: var(--c-text-muted); }
.xpq-fxhfa tbody tr:nth-child(odd) { background: var(--c-surface); }
.xpq-fxhfa tbody tr:nth-child(even) { background: var(--c-bg); }

/* ===== Sliders (game carousels / wins ticker) ===== */
.man-slider { margin: 20px 0; }
.man-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.man-slider-title { font-size: 19px; font-weight: 700; }
.man-slider-controls { display: flex; gap: 9px; flex-shrink: 0; }
.man-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-text) 8%, transparent);
  color: var(--c-text);
  flex-shrink: 0;
}
.man-slider-btn:hover { background: var(--c-purple); color: var(--c-on-purple); }
.man-slider-btn[disabled] { opacity: 0.35; pointer-events: none; }
.man-slider-track {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -bwa-overflow-style: none;
}
.man-slider-track::-webkit-scrollbar { display: none; }

/* ===== Game cards (rendered by snippet-Wz1Games.php — own widget key `wg`, distinct
   from this template's `wz` private prefix; see the snippet's docblock) ===== */
.man-card { position: relative; flex: 0 0 auto; width: 120px; scroll-snap-align: start; }
.man-link { display: block; text-decoration: none; color: inherit; }
.man-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 13px;
  overflow: hidden;
  background: var(--c-surface);
}
.man-thumb img { width: 100%; height: 100%; object-fit: cover; }
.man-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--c-bg) 70%, transparent);
  color: var(--c-text);
  border-radius: 22px;
  padding: 4px 5px;
  font-size: 10px;
  font-weight: 600;
}
.man-meta { padding-top: 6px; }
.man-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.man-provider { font-size: 10px; color: var(--c-text-muted); margin-top: 2px; }

/* ===== Wins ticker ===== */
.man-wins-card {
  flex: 0 0 auto;
  min-width: 180px;
  background: var(--c-surface);
  border-radius: 8px;
  padding: 14px 16px;
  scroll-snap-align: start;
}
.man-wins-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.man-wins-player { font-size: 12px; font-weight: 700; }
.man-wins-amount { font-size: 13px; font-weight: 700; color: var(--c-green); }
.man-wins-game { font-size: 11px; color: var(--c-text-muted); margin-top: 6px; }

/* ===== Chip rows (providers / banking) ===== */

/* ===== Promotions grid ===== */
.xpq-zfhwv { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 18px 0 25px; }
.xpq-kpafa { background: var(--c-surface); border-radius: 15px; padding: 20px; }
.xpq-kpafa h3 { margin: 0 0 9px; font-size: 16px; }
.xpq-kpafa p { margin: 0; font-size: 14px; color: var(--c-text-muted); }

/* ===== FAQ accordion ===== */
.xpq-tazng { background: var(--c-surface); border-radius: 14px; margin-bottom: 11px; overflow: hidden; }
.xpq-tazng summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 45px;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 15px;
}
.xpq-tazng summary::-webkit-details-marker { display: none; }
.xpq-chnbw { flex-shrink: 0; color: var(--c-text-muted); transition: transform 0.2s ease; }
.xpq-tazng[open] .xpq-chnbw { transform: rotate(180deg); }
.xpq-tazng p { margin: 0; padding: 0 20px 18px; color: var(--c-text-muted); font-size: 14px; }

/* ===== Footer ===== */
.xpq-xkrqc { background: var(--c-surface); margin-top: 32px; padding: 23px 14px; }
.xpq-cjnky { max-width: 1600px; margin: 0 auto; }
/* Regulator / trust badges — real logos linking out, same shared assets and same explicit
   sizing the base template uses (base.min.css `.bs-footer-images img`). The explicit CSS
   height is not cosmetic: the global `img{height:auto}` reset plus an inline height="56"
   is exactly the combination that collapsed images to 0×0 in a past incident, which is why
   check-wz1-template.js has a dedicated check for it. */
.xpq-hrjae {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.xpq-hrjae a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 2px 11px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c-text) 6%, transparent);
}
.xpq-hrjae a:hover { background: color-mix(in srgb, var(--c-text) 12%, transparent); }
.xpq-hrjae img {
  width: 6rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}
.xpq-tysgp { border: 0; border-top: 1px solid var(--c-border); margin: 19px 0; }
.xpq-fbytr { display: grid; grid-template-columns: 1fr; gap: 22px; }
.xpq-xbgjk { border-bottom: 1px solid var(--c-border); }
.xpq-xbgjk summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  list-style: none;
  min-height: 45px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.xpq-xbgjk summary::-webkit-details-marker { display: none; }
.xpq-ypbwn { flex-shrink: 0; color: var(--c-text-muted); transition: transform 0.2s ease; }
.xpq-xbgjk[open] .xpq-ypbwn { transform: rotate(180deg); }
.xpq-xbgjk ul { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 2px 0 15px; }
.xpq-xbgjk a { color: var(--c-text-muted); text-decoration: none; font-size: 14px; }
.xpq-xbgjk a:hover { color: var(--c-text); }
.xpq-ejwjt {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.xpq-dkghn { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }
.xpq-dkghn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-text) 8%, transparent);
  color: var(--c-text);
}
.xpq-dkghn a:hover { background: var(--c-accent); }
.xpq-pztqn { font-size: 13px; color: var(--c-text-muted); }
.xpq-cnpap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-text) 8%, transparent);
  color: var(--c-text);
}
.xpq-cnpap:hover { background: var(--c-purple); color: var(--c-on-purple); }

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .xpq-watav { padding: 46px 34px; }
  .xpq-ndkfe { font-size: 32px; }
  .xpq-fbytr { grid-template-columns: repeat(2, 1fr); }
  .xpq-ejwjt { flex-direction: row; justify-content: space-between; text-align: left; }

  .man-card { width: 145px; }
  .man-wins-card { min-width: 200px; }
  .xpq-zfhwv { grid-template-columns: repeat(2, 1fr); }

  .xpq-xbgjk { border-bottom: 0; }
  .xpq-xbgjk summary { cursor: default; pointer-events: none; min-height: 0; padding: 0 0 13px; }
  .xpq-ypbwn { display: none; }
  .xpq-xbgjk ul { padding: 0; }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .xpq-gyvzj { padding: 14px 30px; }
  .xpq-wawsj { display: none; }
  .xpq-sppbn { gap: 9px; }
  .xpq-sppbn .xpq-rcbjy { padding: 12px 22px; font-size: 15px; }
  .xpq-vznba { flex: 0 1 auto; }
  .xpq-kgage { font-size: 19px; }

  .xpq-pvxca { display: none; }

  .xpq-nvkzm {
    position: sticky;
    /* Stick BELOW the sticky header, not under it: with top:0 the sidebar slid beneath the
       header on scroll and — being z-index 50 vs the header's 40 — painted straight over the
       logo. Dropping the stacking below the header AND offsetting by its height fixes both
       halves; the height calc keeps the last menu item reachable instead of pushed off-screen. */
    top: var(--xpq-header-h);
    height: calc(100vh - var(--xpq-header-h));
    z-index: 1;
    max-width: none;
    width: 260px;
    transform: none;
    flex-shrink: 0;
    padding: 21px 13px;
  }
  .xpq-vmvgs { display: none; }

  .xpq-rrhxa { padding: 23px 31px; }
  .xpq-watav { padding: 56px 50px; }
  .xpq-ndkfe { font-size: 42px; }
  .xpq-dmvap { font-size: 20px; }
  .xpq-czbcd { width: auto; }

  .xpq-fxhfa { padding: 0; }
  .xpq-xkrqc { padding: 31px; }
  .xpq-fbytr { grid-template-columns: repeat(4, 1fr); }

  .man-slider-btn { width: 38px; height: 38px; }
  .man-card { width: 165px; }
  .man-wins-card { min-width: 220px; }
  .xpq-zfhwv { grid-template-columns: repeat(3, 1fr); }
}

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

/* CookieBanner (2026-08-24): при параметризации забыт */


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
    .wn-footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 17px 31px; }
    /* wrap обязателен: бейджей стало до семи, в один ряд они влезают только на широком
       десктопе, а на планшете иначе вылезали бы за контейнер. */
    .wn-rg { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 18px 21px; }
    .azm-media img { aspect-ratio: 16 / 6.5; }
    .aqz-banner { flex-direction: row; align-items: center; gap: 21px; }
    .aqz-actions { flex: none; }
    .aqz-btn { flex: none; }
}
/* [hidden]-гард (2026-08-24): не поехал при извлечении aqz-блока */
[hidden]{display:none !important;}

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