/* Uniqueified: 0c5f1247 */
/* Prefix: cxdt- */
/* Prefixes-map: wz->cxdt */
/* Widget-prefixes: {"cb":"fgwv","wg":"cvnb","wb":"qxwe","ms":"mcvt","fl":"rhsv","lm":"vgna","rv":"becr"} */
/* Classmap: {"wz-back-to-top":"cxdt-ctaxr","wz-btn":"cxdt-jgmkj","wz-btn-cta":"cxdt-ccgpf","wz-btn-ghost":"cxdt-dyqgs","wz-btn-secondary":"cxdt-tqwcn","wz-content":"cxdt-ycmpd","wz-el-back-to-top":"cxdt-ngcej","wz-el-hamburger":"cxdt-vnnbx","wz-el-header":"cxdt-tytts","wz-el-overlay":"cxdt-ktanb","wz-el-sidebar":"cxdt-kbmyt","wz-el-sidebar-close":"cxdt-zsqyr","wz-faq-icon":"cxdt-dszwp","wz-faq-item":"cxdt-przxr","wz-footer":"cxdt-wwqgs","wz-footer-badges":"cxdt-svnfc","wz-footer-bottom":"cxdt-ddjkf","wz-footer-chevron":"cxdt-gdeat","wz-footer-col":"cxdt-qkkpc","wz-footer-copy":"cxdt-zvcwc","wz-footer-divider":"cxdt-ahphp","wz-footer-inner":"cxdt-patre","wz-footer-nav":"cxdt-fjrjc","wz-footer-social":"cxdt-mfhyv","wz-hamburger":"cxdt-ydtqr","wz-header":"cxdt-gxpdv","wz-header--scrolled":"cxdt-wgvdd","wz-header-actions":"cxdt-ckpfp","wz-header-inner":"cxdt-wccxa","wz-hero":"cxdt-tgenh","wz-hero-body":"cxdt-pqdef","wz-hero-subtitle":"cxdt-therm","wz-hero-title":"cxdt-adsce","wz-layout":"cxdt-nbwve","wz-logo":"cxdt-tsyyt","wz-logo-mark":"cxdt-eskhj","wz-logo-text":"cxdt-kgcqf","wz-main":"cxdt-bqxmq","wz-nav-chevron":"cxdt-jjajn","wz-nav-icon":"cxdt-mpgny","wz-nav-label":"cxdt-cbeje","wz-nav-link":"cxdt-xtjed","wz-nav-list":"cxdt-tfvew","wz-promo-card":"cxdt-htmax","wz-promo-grid":"cxdt-pfhhk","wz-sidebar":"cxdt-bvgej","wz-sidebar--open":"cxdt-pmarr","wz-sidebar-close":"cxdt-rvcan","wz-sidebar-overlay":"cxdt-hsvwt","wz-sidebar-overlay--visible":"cxdt-pazfd"} */
:root{
  --c-bg:#10092d; --c-surface:#22193e; --c-surface-alt:#30235b; --c-border:#3a286b;
  --c-text:#f2f4f4; --c-text-muted:#9a95a6;
  --c-accent:#4c8fff; --c-accent-hover:#84aeff; --c-on-accent:#000001;
  --c-purple:#4c8dfe; --c-purple-hover:#84afff; --c-on-purple:#010000;
  --c-green:#3fe089; --c-shadow:rgba(0, 0, 1,.35);
  /* Затемнение под модалками/оверлеями. Не брендируется (нет источника в palette.json),
     но объявить обязано: без неё var(--c-overlay) не разрешается и background молча
     становится прозрачным. Значение = --c-bg с альфой, поэтому с retint не конфликтует. */
  --c-overlay:rgba(13, 15, 35,.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. */
  --cxdt-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, 34, .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 ===== */
.cxdt-gxpdv {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--c-surface);
  padding: 9px 17px;
  box-shadow: 0 4px 6px -1px rgba(0, 1, 0,0.2), 0 2px 4px -1px rgba(0, 1, 0,0.12);
}
.cxdt-wgvdd {
  box-shadow: 0 4px 10px -1px var(--c-shadow);
}
.cxdt-wccxa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1600px;
  margin: 0 auto;
}
.cxdt-ydtqr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.cxdt-ydtqr span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
}
.cxdt-tsyyt {
  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. */
.cxdt-eskhj { flex-shrink: 0; line-height: 0; max-height: 36px; width: auto; }
img.cxdt-eskhj { height: 36px; object-fit: contain; }
.cxdt-kgcqf {
  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). */
.cxdt-ckpfp { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cxdt-ckpfp .cxdt-jgmkj { padding: 11px 13px; font-size: 13px; }

/* ===== Buttons ===== */
.cxdt-jgmkj {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 12px 21px;
  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 */
.cxdt-dyqgs { background: #9f9f9e; color: #0c1223; }
.cxdt-dyqgs:hover { background: #8a8a88; }
.cxdt-tqwcn { background: var(--c-purple); color: var(--c-on-purple); }
.cxdt-tqwcn:hover { background: var(--c-purple-hover); }
.cxdt-ccgpf {
  background: var(--c-accent);
  color: var(--c-on-accent);
  border-radius: 17px;
  font-size: 18px;
  padding: 16px 23px;
  width: 100%;
}
.cxdt-ccgpf:hover { background: var(--c-accent-hover); }

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

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

/* ===== Sidebar ===== */
.cxdt-bvgej {
  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: 14px 12px;
}
.cxdt-pmarr { transform: translateX(0); }
.cxdt-rvcan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  align-self: flex-end;
  color: var(--c-text);
  margin-bottom: 9px;
}
.cxdt-tfvew { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.cxdt-xtjed {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 8px 14px;
  border-radius: 7px;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.cxdt-xtjed:hover { background: color-mix(in srgb, var(--c-text) 6%, transparent); }
.cxdt-mpgny { display: flex; flex-shrink: 0; color: var(--c-text); }
.cxdt-cbeje { flex: 1; }
.cxdt-jjajn { flex-shrink: 0; color: var(--c-text-muted); }

/* ===== Main / Hero ===== */
.cxdt-bqxmq { flex: 1; min-width: 0; padding: 16px; }
/* 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). */
.cxdt-tgenh {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 33px 21px;
  /* Literal rgb here MUST NOT equal --c-accent/--c-purple's default (#ff3d3a/#00b4ed) —
     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(150, 51, 234,0.32), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(217, 39, 119,0.28), transparent 50%),
    linear-gradient(135deg, #1a2644 0%, #0d1224 100%);
  isolation: isolate;
}
.cxdt-tgenh::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(240, 242, 246,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
}
.cxdt-pqdef { max-width: 640px; }
.cxdt-adsce {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cxdt-therm {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 19px;
}

/* 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: 19px;
}
.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: 5px; color: var(--c-text-muted); }

/* ===== Content zone ===== */
.cxdt-ycmpd { max-width: 900px; margin: 27px auto 0; padding: 0 5px; }
.cxdt-ycmpd h1, .cxdt-ycmpd h2, .cxdt-ycmpd h3,
.cxdt-ycmpd h4, .cxdt-ycmpd h5, .cxdt-ycmpd h6 {
  font-weight: 700;
  line-height: 1.25;
  margin: 26px 0 11px;
}
.cxdt-ycmpd h1 { font-size: 28px; font-weight: 600; margin-top: 0; }
.cxdt-ycmpd h2 { font-size: 22px; }
.cxdt-ycmpd h3 { font-size: 19px; }
.cxdt-ycmpd h4 { font-size: 17px; }
.cxdt-ycmpd h5, .cxdt-ycmpd h6 { font-size: 15px; }
.cxdt-ycmpd p { margin-bottom: 15px; color: var(--c-text); }
.cxdt-ycmpd ul, .cxdt-ycmpd ol { margin: 0 0 12px 18px; }
.cxdt-ycmpd li { margin-bottom: 8px; }
.cxdt-ycmpd a { color: var(--c-purple); text-decoration: underline; }
.cxdt-ycmpd a:hover { color: var(--c-accent); }
.cxdt-ycmpd strong { font-weight: 700; }
.cxdt-ycmpd em { font-style: italic; }
.cxdt-ycmpd img { border-radius: 13px; margin: 16px 0; }
.cxdt-ycmpd blockquote {
  border-left: 3px solid var(--c-accent);
  background: var(--c-surface);
  padding: 12px 15px;
  border-radius: 0 8px 9px 0;
  font-style: italic;
  color: var(--c-text-muted);
  margin: 0 0 13px;
}
/* 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
   cxdt-* 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. */
.cxdt-ycmpd table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cxdt-ycmpd table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 11px;
  }
}
.cxdt-ycmpd th, .cxdt-ycmpd td {
  text-align: left;
  padding: 11px 13px;
  font-size: 14px;
}
.cxdt-ycmpd th { font-weight: 700; background: var(--c-bg); }
.cxdt-ycmpd td { color: var(--c-text-muted); }
.cxdt-ycmpd tbody tr:nth-child(odd) { background: var(--c-surface); }
.cxdt-ycmpd tbody tr:nth-child(even) { background: var(--c-bg); }

/* ===== Sliders (game carousels / wins ticker) ===== */
.cvnb-slider { margin: 23px 0; }
.cvnb-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 10px;
}
.cvnb-slider-title { font-size: 19px; font-weight: 700; }
.cvnb-slider-controls { display: flex; gap: 10px; flex-shrink: 0; }
.cvnb-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;
}
.cvnb-slider-btn:hover { background: var(--c-purple); color: var(--c-on-purple); }
.cvnb-slider-btn[disabled] { opacity: 0.35; pointer-events: none; }
.cvnb-slider-track {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -mcvt-overflow-style: none;
}
.cvnb-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) ===== */
.cvnb-card { position: relative; flex: 0 0 auto; width: 120px; scroll-snap-align: start; }
.cvnb-link { display: block; text-decoration: none; color: inherit; }
.cvnb-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-surface);
}
.cvnb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cvnb-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: 18px;
  padding: 1px 8px;
  font-size: 10px;
  font-weight: 600;
}
.cvnb-meta { padding-top: 6px; }
.cvnb-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;
}
.cvnb-provider { font-size: 10px; color: var(--c-text-muted); margin-top: 2px; }

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

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

/* ===== Promotions grid ===== */
.cxdt-pfhhk { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 17px 0 23px; }
.cxdt-htmax { background: var(--c-surface); border-radius: 15px; padding: 19px; }
.cxdt-htmax h3 { margin: 0 0 9px; font-size: 16px; }
.cxdt-htmax p { margin: 0; font-size: 14px; color: var(--c-text-muted); }

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

/* ===== Footer ===== */
.cxdt-wwqgs { background: var(--c-surface); margin-top: 31px; padding: 22px 15px; }
.cxdt-patre { 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. */
.cxdt-svnfc {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: center;
}
.cxdt-svnfc a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 3px 8px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--c-text) 6%, transparent);
}
.cxdt-svnfc a:hover { background: color-mix(in srgb, var(--c-text) 12%, transparent); }
.cxdt-svnfc img {
  width: 6rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}
.cxdt-ahphp { border: 0; border-top: 1px solid var(--c-border); margin: 18px 0; }
.cxdt-fjrjc { display: grid; grid-template-columns: 1fr; gap: 19px; }
.cxdt-qkkpc { border-bottom: 1px solid var(--c-border); }
.cxdt-qkkpc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  min-height: 45px;
  padding: 2px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.cxdt-qkkpc summary::-webkit-details-marker { display: none; }
.cxdt-gdeat { flex-shrink: 0; color: var(--c-text-muted); transition: transform 0.2s ease; }
.cxdt-qkkpc[open] .cxdt-gdeat { transform: rotate(180deg); }
.cxdt-qkkpc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 2px 0 17px; }
.cxdt-qkkpc a { color: var(--c-text-muted); text-decoration: none; font-size: 14px; }
.cxdt-qkkpc a:hover { color: var(--c-text); }
.cxdt-ddjkf {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  text-align: center;
}
.cxdt-mfhyv { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cxdt-mfhyv 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);
}
.cxdt-mfhyv a:hover { background: var(--c-accent); }
.cxdt-zvcwc { font-size: 13px; color: var(--c-text-muted); }
.cxdt-ctaxr {
  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);
}
.cxdt-ctaxr:hover { background: var(--c-purple); color: var(--c-on-purple); }

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .cxdt-tgenh { padding: 46px 31px; }
  .cxdt-adsce { font-size: 32px; }
  .cxdt-fjrjc { grid-template-columns: repeat(2, 1fr); }
  .cxdt-ddjkf { flex-direction: row; justify-content: space-between; text-align: left; }

  .cvnb-card { width: 145px; }
  .cvnb-wins-card { min-width: 200px; }
  .cxdt-pfhhk { grid-template-columns: repeat(2, 1fr); }

  .cxdt-qkkpc { border-bottom: 0; }
  .cxdt-qkkpc summary { cursor: default; pointer-events: none; min-height: 0; padding: 0 0 13px; }
  .cxdt-gdeat { display: none; }
  .cxdt-qkkpc ul { padding: 0; }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .cxdt-gxpdv { padding: 17px 30px; }
  .cxdt-ydtqr { display: none; }
  .cxdt-ckpfp { gap: 9px; }
  .cxdt-ckpfp .cxdt-jgmkj { padding: 8px 22px; font-size: 15px; }
  .cxdt-tsyyt { flex: 0 1 auto; }
  .cxdt-kgcqf { font-size: 19px; }

  .cxdt-hsvwt { display: none; }

  .cxdt-bvgej {
    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(--cxdt-header-h);
    height: calc(100vh - var(--cxdt-header-h));
    z-index: 1;
    max-width: none;
    width: 260px;
    transform: none;
    flex-shrink: 0;
    padding: 22px 15px;
  }
  .cxdt-rvcan { display: none; }

  .cxdt-bqxmq { padding: 23px 33px; }
  .cxdt-tgenh { padding: 56px 46px; }
  .cxdt-adsce { font-size: 42px; }
  .cxdt-therm { font-size: 20px; }
  .cxdt-ccgpf { width: auto; }

  .cxdt-ycmpd { padding: 0; }
  .cxdt-wwqgs { padding: 33px; }
  .cxdt-fjrjc { grid-template-columns: repeat(4, 1fr); }

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* LastModified #250 [Base] Winzter1 — подпись в рамке справа, вместе с автором страницы.
   Дописывать В КОНЕЦ assets/css/wz1.min.css.
   Структура иная, чем у #42: aside > dl > dt/dd, а не строка.
   ⛔ float не используем — в .cxdt-ycmpd он утащил бы за собой обтекание FAQ.
      Прижимаем margin-left:auto, это не влияет на соседей. */
.vgna-box{display:block;width:max-content;max-width:100%;margin:16px 0 19px auto;padding:13px 16px;border:1px solid #35405c;border-radius:11px;background:#1b2335}
.vgna-meta{margin:0;font-size:12px;line-height:1.5}
.vgna-key{margin:0;font-size:10px;letter-spacing:.06em;text-transform:uppercase;color:#7c8aa3}
.vgna-val{margin:2px 0 0;color:#dfe8f0;font-weight:600}
.vgna-key--by{margin-top:7px}
.vgna-val--by{font-weight:400;color:#9da6bd}
/* ── Comments block (rv) — [Base] Winzter1 #250 ─────────────────────────────
   Раскладка: список в столбик, вертикальная линейка слева, дата под текстом.
   ⛔ Значения ЛИТЕРАЛАМИ (#hex и px), не var()/rem — иначе джиттер их не двигает.
   Палитра и приёмы взяты из темы: surface #111d39, accent #fc3d3d,
   синий #00b4f0, muted #9f9f9d, радиус 12px, тень 0 4px 10px -1px,
   срезанный радиус слева — как у существующего `border-radius: 0 8px 11px 0`. */
.becr-list{margin:31px 0}
.becr-lead{font-size:26px;line-height:1.3;margin:0 0 20px;color:#f0f2f5}
.becr-item{border-left:3px solid #ff403d;background:#141d38;border-radius:0 13px 10px 0;padding:13px 17px 17px;margin-bottom:14px;box-shadow:0 4px 10px -1px rgba(0, 1, 0,.35)}
.becr-who{display:flex;align-items:center;gap:6px;margin:0 0 6px;color:#f0eff4;font-size:16px}
.becr-score{background:#00b2ef;color:#101223;border-radius:7px;padding:1px 9px;font-size:13px;font-weight:700}
.becr-quote{margin:0;padding:0;border:0;color:#9f9d9f;font-size:14px;line-height:1.6}
.becr-when{display:block;margin-top:8px;color:#9f9fa2;font-size:12px}
@media (max-width:560px){.becr-item{padding:11px 13px 13px}.becr-who{flex-wrap:wrap}}
