:root{
  /* ── Palette: "Toshkent Sary" — deep graphite-teal base, brand amber signal ── */
  --accent:#FFCD05;
  --accent-2:#FFE580;
  --accent-ink:#1A1608;
  --bg-main:#12181C;
  --bg-tint:#182026;
  --bg-card:#1E282E;
  --bg-elev:#25313A;
  --bar:#0C1114;
  --text-main:#EDF2F4;
  --text-soft:#AFBFC7;
  --text-mute:#8FA2AC;
  --border:#2C3A43;
  --border-soft:#222E35;
  --ok:#4FD69C;
  --warn:#FF8A5B;

  --font-head:"Bahnschrift","DIN Alternate","Oswald","Segoe UI Semibold",system-ui,sans-serif;
  --font-body:"Inter","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --font-num:"IBM Plex Mono","SFMono-Regular",Consolas,"Liberation Mono",monospace;

  --wrap:1120px;
  --gutter:22px;

  /* airy density scale */
  --s1:.65rem;
  --s2:1.15rem;
  --s3:1.9rem;
  --s4:3rem;
  --sec-pad:clamp(2.6rem,5.5vw,4.4rem);

  /* moderate shape */
  --r-s:6px;
  --r-m:8px;
  --r-l:10px;

  --shadow:0 1px 0 rgba(255,255,255,.03),0 10px 30px -14px rgba(0,0,0,.75);
  --shadow-lift:0 1px 0 rgba(255,255,255,.05),0 18px 40px -18px rgba(0,0,0,.85);
  --rail-w:0px;
}

*{box-sizing:border-box}
*,*::before,*::after{margin:0;padding:0}

html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:80px}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

body{
  background:var(--bg-main);
  color:var(--text-main);
  font-family:var(--font-body);
  font-size:16.5px;
  line-height:1.68;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img,svg,video{max-width:100%}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:2px}

h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:700;
  line-height:1.14;
  letter-spacing:-.012em;
  text-wrap:balance;
}
h1{font-size:clamp(2rem,4.6vw,3.15rem)}
h2{font-size:clamp(1.55rem,3.1vw,2.25rem)}
h3{font-size:clamp(1.15rem,2vw,1.4rem)}
h4{font-size:1.05rem}
p,li{overflow-wrap:anywhere}
strong{color:#fff}

/* ─────────────  LAYOUT ARCHETYPE: CARDS (stacked panels)  ───────────── */

.bwu-container{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.bwu-main{
  display:block;
  max-width:calc(var(--wrap) + var(--gutter) * 2);
  margin-inline:auto;
  padding-block:var(--s3) var(--s4);
}
/* панели во всю ширину экрана: скруглённый угол и боковая рамка на самом краю
   вьюпорта читаются как артефакт — убираем их, пока панель не стала карточкой */
@media (max-width:1180px){
  .bwu-main > .bwu-section,
  .bwu-main > .bwu-hero,
  .bwu-main > .bwu-page-header{border-radius:0;border-inline-width:0}
}

/* every section is an elevated panel on the page background */
.bwu-section{
  background:var(--bg-card);
  border:1px solid var(--border-soft);
  border-radius:var(--r-l);
  box-shadow:var(--shadow);
  padding-block:var(--sec-pad);
  margin-block:var(--s3);
  overflow:hidden;
}
.bwu-section--alt{background:var(--bg-tint)}
.bwu-section--flat{background:transparent;border-color:transparent;box-shadow:none}
.bwu-main > .bwu-section:first-child{margin-block-start:0}

.bwu-section__head{
  display:flex;
  flex-direction:column;
  gap:var(--s1);
  margin-block-end:var(--s3);
}

.bwu-eyebrow{
  font-family:var(--font-num);
  font-size:.8rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent);
}
.bwu-lead{color:var(--text-soft);font-size:1.06rem;max-width:70ch}
p.bwu-muted{color:var(--text-mute);max-width:70ch}
.bwu-muted{color:var(--text-mute)}
.bwu-prose p,
.bwu-overview__body p,
.bwu-legal p,
.bwu-legal li,
.bwu-cta p{max-width:70ch}
.bwu-prose > * + *{margin-block-start:var(--s2)}
.bwu-prose ul,.bwu-prose ol{padding-inline-start:1.35rem}
.bwu-prose li + li{margin-block-start:.45rem}
.bwu-prose li::marker{color:var(--accent)}

/* accent hairline that ties every panel to the brand signal */
.bwu-section__head .bwu-eyebrow::before{
  content:"";
  display:inline-block;
  width:26px;
  height:2px;
  background:var(--accent);
  vertical-align:middle;
  margin-inline-end:.6rem;
}

/* ─────────────  BUTTONS  ───────────── */

.bwu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.78rem 1.4rem;
  border:1px solid transparent;
  border-radius:var(--r-m);
  background:var(--accent);
  color:var(--accent-ink);
  font-family:var(--font-head);
  font-weight:700;
  font-size:.97rem;
  letter-spacing:.01em;
  line-height:1.2;
  cursor:pointer;
  text-align:center;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.bwu-btn:hover{
  background:var(--accent-2);
  text-decoration:none;
  transform:translateY(-1px);
  box-shadow:0 10px 22px -12px rgba(255,205,5,.8);
}
.bwu-btn:active{transform:translateY(0)}
.bwu-btn--ghost{
  background:transparent;
  color:var(--text-main);
  border-color:var(--border);
}
.bwu-btn--ghost:hover{background:var(--bg-elev);color:var(--text-main);box-shadow:none}
.bwu-btn--lg{padding:.95rem 1.85rem;font-size:1.05rem}
.bwu-btn--block{width:100%}

.bwu-actions{
  display:flex;
  flex-wrap:wrap;
  gap:var(--s2);
  align-items:center;
}
/* сноска — подпись под группой кнопок, а не соседний flex-элемент сбоку:
   в flex-строке max-width сноски гасил перенос, поэтому такой блок — обычный поток */
.bwu-actions:has(> .bwu-cta__fine){display:block}
.bwu-actions:has(> .bwu-cta__fine) > .bwu-btn{margin-block-end:var(--s1)}
.bwu-actions:has(> .bwu-cta__fine) > .bwu-btn + .bwu-btn{margin-inline-start:var(--s2)}
.bwu-actions > .bwu-cta__fine{margin-block-start:var(--s1)}
@media (max-width:480px){
  .bwu-actions{align-self:stretch;width:100%}
  .bwu-actions > .bwu-btn{width:100%}
  .bwu-actions:has(> .bwu-cta__fine) > .bwu-btn + .bwu-btn{margin-inline-start:0}
}

/* ─────────────  ICONS  ───────────── */

.bwu-icon{
  width:1.5em;
  height:1.5em;
  display:inline-block;
  vertical-align:middle;
  flex-shrink:0;
  stroke:currentColor;
  fill:none;
}
.bwu-icon--lg{width:2rem;height:2rem}
.bwu-icon--accent{color:var(--accent)}

/* ─────────────  HEADER  ───────────── */

.bwu-header{
  position:sticky;
  top:0;
  z-index:900;
  background:var(--bar);
  border-block-end:1px solid var(--border);
}
.bwu-header__bar{
  display:flex;
  align-items:center;
  gap:var(--s2);
  min-height:68px;
  padding-block:.55rem;
}
.bwu-header__bar > *{min-width:0}

.bwu-logo{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  flex-shrink:0;
}
.bwu-logo:hover{text-decoration:none}
.bwu-logo__img{
  display:block;
  height:40px;
  width:auto;
  max-width:190px;
  object-fit:contain;
}

.bwu-nav{
  display:flex;
  align-items:center;
  gap:.35rem;
  margin-inline-start:auto;
  list-style:none;
}
.bwu-nav a:not(.bwu-btn){
  display:block;
  padding:.55rem .72rem;
  border-radius:var(--r-s);
  color:var(--text-soft);
  font-family:var(--font-head);
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.005em;
}
.bwu-nav a:not(.bwu-btn):hover{color:var(--text-main);background:rgba(255,255,255,.06);text-decoration:none}
.bwu-nav a:not(.bwu-btn).is-active,
.bwu-nav a:not(.bwu-btn)[aria-current="page"]{color:var(--accent)}
.bwu-nav > .bwu-btn{display:none}

.bwu-header__cta{flex-shrink:0}

.bwu-burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  flex-shrink:0;
  margin-inline-start:auto;
  padding:0;
  border:1px solid var(--border);
  border-radius:var(--r-s);
  background:transparent;
  cursor:pointer;
}
.bwu-burger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text-main);
  transition:transform .2s ease,opacity .2s ease;
}
.bwu-header.is-open .bwu-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.bwu-header.is-open .bwu-burger span:nth-child(2){opacity:0}
.bwu-header.is-open .bwu-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:900px){
  .bwu-burger{display:flex}
  .bwu-nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    flex-direction:column;
    align-items:stretch;
    gap:.15rem;
    margin:0;
    padding:var(--s2) var(--gutter) var(--s3);
    background:var(--bar);
    border-block-end:1px solid var(--border);
    box-shadow:var(--shadow-lift);
  }
  .bwu-header.is-open .bwu-nav{display:flex}
  .bwu-nav a:not(.bwu-btn){padding:.8rem .5rem;font-size:1.02rem}
  .bwu-header__cta{display:none}
  .bwu-nav > .bwu-btn{display:block;width:100%;margin-block-start:var(--s2)}
  .bwu-logo__img{max-width:min(45vw,190px);height:auto;max-height:36px}
}
@media (max-width:400px){
  .bwu-header__bar{gap:.6rem}
  .bwu-logo__img{max-height:32px}
}

/* grouped menu (unused here, kept for parity) */
.bwu-nav__group{position:relative;list-style:none}
.bwu-nav__toggle{display:none;background:none;border:0;color:var(--text-soft);cursor:pointer;padding:.4rem}
.bwu-submenu{
  display:none;
  position:absolute;
  top:100%;
  inset-inline-start:0;
  min-width:220px;
  list-style:none;
  padding:.4rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-m);
  box-shadow:var(--shadow-lift);
  z-index:1000;
}
.bwu-nav__group:hover .bwu-submenu,
.bwu-nav__group:focus-within .bwu-submenu{display:block}
@media (max-width:900px){
  .bwu-nav__toggle{display:inline-block}
  .bwu-submenu{position:static;display:none;box-shadow:none;border:0;background:transparent;padding-inline-start:1rem}
  .bwu-nav__group.is-open .bwu-submenu{display:block}
}

/* ─────────────  HERO — pattern: STACKED  ───────────── */

.bwu-hero{
  position:relative;
  background:var(--bg-card);
  border:1px solid var(--border-soft);
  border-radius:var(--r-l);
  overflow:hidden;
}
.bwu-hero__inner{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:var(--s2);
}

.bwu-hero--home{
  background:
    radial-gradient(900px 380px at 15% -10%,rgba(255,205,5,.16),transparent 65%),
    linear-gradient(180deg,var(--bg-elev) 0%,var(--bg-card) 60%);
  margin-block-end:var(--s3);
}
.bwu-hero--home .bwu-hero__inner{
  padding-block:clamp(2.6rem,6vw,4.2rem);
  gap:var(--s2);
  align-items:flex-start;
  text-align:start;
}
.bwu-hero--home .bwu-hero__title{margin-block-start:.2rem}
.bwu-hero--home .bwu-hero__sub{
  color:var(--text-soft);
  font-size:clamp(1.02rem,1.7vw,1.18rem);
  max-width:70ch;
}
.bwu-hero--home .bwu-actions{margin-block-start:var(--s2)}
/* на узком экране подзаголовок — длинный абзац: уводим его под CTA,
   чтобы кнопка не уезжала за полтора экрана */
@media (max-width:640px){
  .bwu-hero--home .bwu-hero__inner > .bwu-eyebrow{order:1}
  .bwu-hero--home .bwu-hero__inner > .bwu-hero__title{order:2}
  .bwu-hero--home .bwu-hero__inner > .bwu-hero__chips{order:3}
  .bwu-hero--home .bwu-hero__inner > .bwu-actions{order:4}
  .bwu-hero--home .bwu-hero__inner > .bwu-hero__note{order:5}
  .bwu-hero--home .bwu-hero__inner > .bwu-hero__sub{order:6}
  .bwu-hero--home .bwu-hero__inner > .bwu-hero__media{order:7}
}
.bwu-hero--home .bwu-hero__note{
  color:var(--text-mute);
  font-size:.9rem;
  font-family:var(--font-body);
  letter-spacing:normal;
  max-width:70ch;
}
/* stacked: visual sits BELOW the text, full container width */
.bwu-hero--home .bwu-hero__media{
  width:100%;
  margin-block-start:var(--s2);
}
.bwu-hero--home .bwu-hero__media:empty,
.bwu-hero--home .bwu-hero__media--ph{
  aspect-ratio:3/1;
  border-radius:var(--r-m);
  background:linear-gradient(115deg,var(--bg-elev),rgba(255,205,5,.22) 60%,var(--bg-tint));
}

.bwu-hero__img{
  display:block;
  width:100%;
  height:auto;
  max-height:70vh;
  aspect-ratio:3/2;
  object-fit:cover;
  border-radius:var(--r-m);
}
/* на главной фото 3:2 занимало почти весь второй экран — держим его полосой */
.bwu-hero--home .bwu-hero__img{aspect-ratio:16/9;max-height:50vh}

/* hero signal chips (18+, litsenziya, valyuta) */
.bwu-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  list-style:none;
}
.bwu-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.34rem .7rem;
  border:1px solid var(--border);
  border-radius:var(--r-s);
  background:rgba(255,255,255,.03);
  color:var(--text-soft);
  font-family:var(--font-num);
  font-size:.82rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.bwu-chip--accent{border-color:rgba(255,205,5,.45);color:var(--accent)}

/* ─────────────  INNER PAGE HEADER  ───────────── */

.bwu-hero--inner{
  position:relative;
  background:linear-gradient(120deg,var(--bg-elev),var(--bg-tint));
  border-radius:var(--r-l);
  margin-block-end:var(--s3);
  overflow:hidden;
}
.bwu-hero--inner .bwu-hero__inner{
  position:relative;
  min-height:180px;
  justify-content:center;
  gap:var(--s1);
  padding-block:clamp(1.5rem,3.2vw,2.2rem);
}
.bwu-hero--inner h1{font-size:clamp(1.7rem,3.6vw,2.5rem)}
.bwu-hero--inner .bwu-hero__sub{color:var(--text-soft);max-width:none}
.bwu-hero--inner .bwu-hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  aspect-ratio:auto;
  max-height:none;
  object-fit:cover;
  border-radius:0;
  z-index:0;
}
/* затемнение вешаем на саму секцию: картинка растянута на всю её ширину,
   а .bwu-hero__inner уже колонка контейнера — иначе по краям остаётся неприкрытое фото */
.bwu-hero--inner:has(.bwu-hero__img)::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(8,12,15,.92) 0%,rgba(8,12,15,.8) 55%,rgba(8,12,15,.62) 100%);
}
:where(.bwu-hero--inner .bwu-hero__inner > :not(.bwu-hero__img)){position:relative;z-index:2}

/* ─────────────  PAGE HEADER (legal pages)  ───────────── */

.bwu-page-header{
  position:relative;
  background:var(--bg-tint);
  border:1px solid var(--border-soft);
  border-radius:var(--r-l);
  padding-block:var(--s3);
  margin-block-end:var(--s3);
  overflow:hidden;
}
.bwu-page-header__inner{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:var(--s1);
}
.bwu-page-header h1{font-size:clamp(1.6rem,3.4vw,2.35rem)}

.bwu-crumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.4rem;
  list-style:none;
  font-size:.83rem;
  color:var(--text-mute);
}
.bwu-crumbs li{display:flex;align-items:center;gap:.4rem}
.bwu-crumbs li + li::before{content:"/";color:var(--text-mute)}
.bwu-crumbs a{color:var(--text-soft);padding-block:.6rem}
.bwu-crumbs a:hover{color:var(--accent)}

/* ─────────────  OVERVIEW  ───────────── */

.bwu-overview__body > * + *{margin-block-start:var(--s2)}

/* ─────────────  FEATURE CARDS — pattern: GRID  ───────────── */

.bwu-features{
  display:grid;
  gap:var(--s2);
  grid-template-columns:repeat(auto-fit,minmax(min(250px,100%),1fr));
}
.bwu-features > *{min-width:0}
.bwu-feature{
  display:flex;
  flex-direction:column;
  gap:var(--s1);
  padding:var(--s2);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
  transition:border-color .2s ease,transform .2s ease;
}
.bwu-feature:hover{border-color:rgba(255,205,5,.4);transform:translateY(-2px)}
.bwu-feature__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:var(--r-s);
  background:rgba(255,205,5,.12);
  color:var(--accent);
}
.bwu-feature__title{font-size:1.08rem}
.bwu-feature__text{color:var(--text-soft);font-size:.96rem}

/* ─────────────  CARDS GRID  ───────────── */

.bwu-cards{
  display:grid;
  gap:var(--s2);
  grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));
}
.bwu-cards > *{min-width:0}
.bwu-card{
  display:flex;
  flex-direction:column;
  gap:var(--s1);
  padding:var(--s2);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
}
.bwu-card__title{font-size:1.05rem;font-family:var(--font-head)}
.bwu-card__text{color:var(--text-soft);font-size:.95rem}
.bwu-card__meta{
  font-family:var(--font-num);
  font-size:.8rem;
  letter-spacing:.06em;
  color:var(--accent);
  text-transform:uppercase;
}

/* ─────────────  TABLES  ───────────── */

.bwu-table-wrap{
  overflow-x:auto;
  overscroll-behavior-x:contain;
  max-width:100%;
  margin-block:1.5rem;
  border:1px solid var(--border);
  border-radius:var(--r-m);
  /* подсказка горизонтальной прокрутки: тень у того края, за которым ещё есть колонки */
  background:
    linear-gradient(to right,var(--bg-card) 30%,rgba(30,40,46,0)) left center/28px 100% no-repeat local,
    linear-gradient(to left,var(--bg-card) 30%,rgba(30,40,46,0)) right center/28px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%,rgba(255,205,5,.22),rgba(255,205,5,0)) left center/22px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%,rgba(255,205,5,.22),rgba(255,205,5,0)) right center/22px 100% no-repeat scroll,
    var(--bg-card);
}
.bwu-table{
  width:100%;
  border-collapse:collapse;
  font-size:.94rem;
  min-width:520px;
}
.bwu-table caption{
  text-align:start;
  padding:.85rem var(--s2);
  color:var(--text-mute);
  font-size:.85rem;
}
.bwu-table th,
.bwu-table td{
  padding:.82rem var(--s2);
  text-align:start;
  border-block-end:1px solid var(--border-soft);
  vertical-align:top;
}
.bwu-table th{
  white-space:nowrap;
  background:var(--bg-tint);
  color:var(--text-main);
  font-family:var(--font-head);
  font-size:.82rem;
  letter-spacing:.09em;
  text-transform:uppercase;
}
/* nowrap в шапке раздувал таблицу до 920px даже там, где она могла ужаться */
@media (max-width:900px){
  .bwu-table th{white-space:normal}
  .bwu-table{min-width:440px}
}
.bwu-table tbody tr:last-child td{border-block-end:0}
.bwu-table tbody tr:hover{background:rgba(255,255,255,.025)}
.bwu-table td:first-child{color:var(--text-main);font-weight:600}
.bwu-num{font-family:var(--font-num);font-size:.92rem;white-space:nowrap;color:var(--text-main)}

/* payments + bonus tables reuse the table skin */
.bwu-payments td:first-child,
.bwu-bonus-table td:first-child{white-space:nowrap}
.bwu-payments .bwu-pay-name{
  display:flex;
  align-items:center;
  gap:.55rem;
}
.bwu-payments .bwu-icon{color:var(--accent)}
.bwu-tag-ok{
  display:inline-block;
  padding:.15rem .5rem;
  border-radius:var(--r-s);
  background:rgba(79,214,156,.14);
  color:var(--ok);
  font-family:var(--font-num);
  font-size:.82rem;
  letter-spacing:.03em;
}

/* ─────────────  TWO COLS + CONTENT PANEL  ───────────── */

.bwu-two-cols{
  display:grid;
  gap:var(--s3);
  grid-template-columns:1fr;
  align-items:start;
}
.bwu-two-cols > *{min-width:0}
@media (min-width:900px){
  .bwu-two-cols{grid-template-columns:1.25fr .85fr}
}
.bwu-two-cols__text > * + *{margin-block-start:var(--s2)}

.bwu-panel{
  display:flex;
  flex-direction:column;
  gap:var(--s2);
  padding:var(--s2);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
  box-shadow:var(--shadow);
}
.bwu-panel__title{
  font-family:var(--font-head);
  font-size:1.02rem;
  letter-spacing:.02em;
}
.bwu-panel__title::after{
  content:"";
  display:block;
  width:32px;
  height:2px;
  margin-block-start:.55rem;
  background:var(--accent);
}

.bwu-facts{display:flex;flex-direction:column;gap:0}
.bwu-facts__row{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:.5rem var(--s2);
  padding-block:.68rem;
  border-block-end:1px solid var(--border-soft);
}
.bwu-facts__row:last-child{border-block-end:0}
.bwu-facts dt{color:var(--text-mute);font-size:.9rem}
.bwu-facts dd{
  font-family:var(--font-num);
  font-size:.92rem;
  color:var(--text-main);
  text-align:end;
}

.bwu-checklist{list-style:none;display:flex;flex-direction:column;gap:.7rem}
.bwu-checklist li{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  font-size:.95rem;
  color:var(--text-soft);
}
.bwu-checklist .bwu-icon{color:var(--accent);margin-block-start:.08rem}

/* ─────────────  QUICK FACTS (standalone)  ───────────── */

.bwu-quick-facts{
  display:grid;
  gap:var(--s2);
  grid-template-columns:repeat(auto-fit,minmax(min(200px,100%),1fr));
}
.bwu-quick-facts > *{min-width:0}
.bwu-quick-facts__item{
  display:flex;
  flex-direction:column;
  gap:.3rem;
  padding-inline-start:var(--s2);
  border-inline-start:2px solid var(--accent);
}
.bwu-quick-facts__label{font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-mute)}
.bwu-quick-facts__value{font-family:var(--font-num);font-size:1rem;color:var(--text-main)}

/* ─────────────  NUMBERED LIST  ───────────── */

.bwu-steps{
  list-style:none;
  counter-reset:bwu-step;
  display:flex;
  flex-direction:column;
  gap:var(--s2);
}
.bwu-steps > li{
  counter-increment:bwu-step;
  position:relative;
  display:flex;
  flex-direction:column;
  gap:.4rem;
  padding:var(--s2) var(--s2) var(--s2) calc(var(--s2) + 52px);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
  min-width:0;
}
.bwu-steps > li::before{
  content:counter(bwu-step,decimal-leading-zero);
  position:absolute;
  inset-inline-start:var(--s2);
  top:var(--s2);
  font-family:var(--font-num);
  font-size:1.05rem;
  color:var(--accent);
  letter-spacing:.02em;
}
.bwu-steps__title{font-family:var(--font-head);font-size:1.04rem}
.bwu-steps p{color:var(--text-soft);font-size:.96rem}

/* ─────────────  STATS BAR — pattern: STRIP  ───────────── */

.bwu-stats{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  gap:0;
  padding-block:.3rem;
}
.bwu-stats > *{min-width:0}
.bwu-stat{
  flex:1 1 180px;
  display:flex;
  flex-direction:column;
  gap:.3rem;
  padding:.75rem var(--s2);
  border-inline-start:1px solid var(--border);
}
.bwu-stat:first-child{border-inline-start:0;padding-inline-start:0}
.bwu-stat__value{
  font-family:var(--font-num);
  font-size:clamp(1.35rem,2.6vw,1.85rem);
  line-height:1.1;
  color:var(--accent);
}
.bwu-stat__label{
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-mute);
}
@media (max-width:640px){
  .bwu-stat{flex:1 1 100%;border-inline-start:0;border-block-start:1px solid var(--border);padding-inline:0}
  .bwu-stat:first-child{border-block-start:0}
}

/* ─────────────  PROS / CONS  ───────────── */

.bwu-proscons{
  display:grid;
  gap:var(--s2);
  grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));
}
.bwu-proscons > *{min-width:0}
.bwu-proscons__col{
  display:flex;
  flex-direction:column;
  gap:var(--s1);
  padding:var(--s2);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
}
.bwu-proscons__col--pros{border-block-start:3px solid var(--ok)}
.bwu-proscons__col--cons{border-block-start:3px solid var(--warn)}
.bwu-proscons__title{font-family:var(--font-head);font-size:1rem;letter-spacing:.03em}
.bwu-proscons ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.bwu-proscons li{display:flex;gap:.55rem;font-size:.95rem;color:var(--text-soft)}
.bwu-proscons__col--pros .bwu-icon{color:var(--ok)}
.bwu-proscons__col--cons .bwu-icon{color:var(--warn)}

/* ─────────────  METHODOLOGY / VERDICT  ───────────── */

.bwu-methodology{
  display:flex;
  flex-direction:column;
  gap:var(--s2);
}
.bwu-methodology__item{
  display:flex;
  gap:var(--s2);
  align-items:flex-start;
  padding-block:var(--s1);
  border-block-end:1px solid var(--border-soft);
}
.bwu-methodology__item:last-child{border-block-end:0}
.bwu-methodology__item .bwu-icon{color:var(--accent)}
.bwu-methodology__body > * + *{margin-block-start:.4rem}

.bwu-verdict{
  display:flex;
  flex-direction:column;
  gap:var(--s2);
  padding:var(--s3);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-inline-start:3px solid var(--accent);
  border-radius:var(--r-m);
}
.bwu-verdict__title{font-family:var(--font-head);font-size:1.2rem}
.bwu-verdict p{color:var(--text-soft)}

/* ─────────────  TOC  ───────────── */

.bwu-toc{
  display:flex;
  flex-direction:column;
  gap:var(--s2);
  padding:var(--s2);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
}
.bwu-toc__title{
  font-family:var(--font-num);
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--text-mute);
}
.bwu-toc ol,
.bwu-toc ul{
  list-style:none;
  display:grid;
  gap:.15rem var(--s2);
  grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));
  counter-reset:bwu-toc;
}
.bwu-toc li{counter-increment:bwu-toc;min-width:0}
.bwu-toc a{
  display:flex;
  gap:.55rem;
  padding-block:.5rem;
  color:var(--text-soft);
  font-size:.95rem;
}
.bwu-toc a::before{
  content:counter(bwu-toc,decimal-leading-zero);
  font-family:var(--font-num);
  font-size:.8rem;
  color:var(--accent);
  flex-shrink:0;
}
.bwu-toc a:hover{color:var(--accent)}

/* ─────────────  LEGAL BODY  ───────────── */

.bwu-legal{counter-reset:bwu-legal;display:flex;flex-direction:column;gap:var(--s3)}
.bwu-legal__block{display:flex;flex-direction:column;gap:var(--s1)}
.bwu-legal h2{
  counter-increment:bwu-legal;
  display:flex;
  gap:.7rem;
  align-items:baseline;
  font-size:clamp(1.2rem,2.2vw,1.5rem);
}
.bwu-legal h2::before{
  content:counter(bwu-legal);
  font-family:var(--font-num);
  font-size:.9rem;
  color:var(--accent);
  flex-shrink:0;
}
.bwu-legal h3{font-size:1.05rem;margin-block-start:var(--s1)}
.bwu-legal p,
.bwu-legal li{color:var(--text-soft)}
.bwu-legal ul,
.bwu-legal ol{padding-inline-start:1.35rem;display:flex;flex-direction:column;gap:.45rem}
.bwu-legal li::marker{color:var(--accent)}
.bwu-legal > * + *{margin-block-start:0}

/* ─────────────  FAQ — pattern: BOXED  ───────────── */

.bwu-faq{display:flex;flex-direction:column;gap:var(--s1)}
.bwu-faq details{
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:var(--r-m);
  padding-inline:var(--s2);
}
.bwu-faq details[open]{border-color:rgba(255,205,5,.35)}
.bwu-faq summary{
  cursor:pointer;
  padding:1rem 0;
  font-weight:600;
  list-style:none;
  font-family:var(--font-head);
  font-size:1.02rem;
  color:var(--text-main);
  display:flex;
  align-items:flex-start;
  gap:.2rem;
}
.bwu-faq summary::-webkit-details-marker{display:none}
.bwu-faq summary::before{
  content:'+';
  margin-right:.6rem;
  transition:transform .2s;
  color:var(--accent);
  font-family:var(--font-num);
  font-size:1.25rem;
  font-weight:700;
  line-height:1.1;
  width:1ch;
  text-align:center;
  flex-shrink:0;
}
.bwu-faq details[open] summary::before{content:'−'}
.bwu-faq details > :not(summary){padding:.5rem 0 1rem;color:var(--text-soft)}
.bwu-faq details > :not(summary) > * + *{margin-block-start:var(--s1)}

/* ─────────────  RTP / GAME GRID  ───────────── */

.bwu-rtp{
  display:grid;
  gap:clamp(.6rem,1.5vw,1rem);
  grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (min-width:640px){.bwu-rtp{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:960px){.bwu-rtp{grid-template-columns:repeat(4,minmax(0,1fr))}}
.bwu-rtp-item{
  position:relative;
  overflow:hidden;
  min-width:0;
  border:1px solid var(--border);
  border-radius:var(--r-m);
  background:var(--bg-elev);
}
.bwu-rtp-item__thumb{
  display:block;
  aspect-ratio:3/2;
  position:relative;
  background:linear-gradient(135deg,var(--bg-tint),rgba(255,205,5,.28));
}
.bwu-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.bwu-rtp-item__name{
  display:block;
  padding:.6rem .7rem;
  font-size:.88rem;
  color:var(--text-soft);
  overflow-wrap:anywhere;
}
.bwu-rtp-tooltip{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  opacity:0;
  transition:opacity .2s;
  padding:.5rem .7rem;
  background:rgba(8,12,15,.92);
  color:var(--accent);
  font-family:var(--font-num);
  font-size:.8rem;
}
.bwu-rtp-item:hover .bwu-rtp-tooltip,
.bwu-rtp-item:focus-within .bwu-rtp-tooltip{opacity:1}

/* ─────────────  CTA BLOCK  ───────────── */

.bwu-cta{
  background:
    radial-gradient(760px 300px at 92% -25%,rgba(255,205,5,.15),rgba(255,205,5,0) 72%),
    var(--bg-elev);
  border:1px solid rgba(255,205,5,.28);
  padding-block:var(--sec-pad);
}
.bwu-cta__inner{
  display:flex;
  flex-direction:column;
  gap:var(--s2);
  align-items:flex-start;
  text-align:start;
}
.bwu-cta__title{font-size:clamp(1.5rem,3vw,2.05rem)}
.bwu-cta p{color:var(--text-soft)}
.bwu-cta .bwu-actions{justify-content:flex-start}
/* предупреждения раньше шли моноширинным с трекингом — на длинной строке
   это самый нечитаемый текст на странице; шрифт и ширина, формулировки не трогаем */
.bwu-cta__fine{
  color:var(--text-mute);
  font-size:.88rem;
  font-family:var(--font-body);
  letter-spacing:normal;
  line-height:1.55;
  max-width:70ch;
}
.bwu-cta--center .bwu-cta__inner{align-items:center;text-align:center}
.bwu-cta--center .bwu-actions{justify-content:center}

/* ─────────────  NOTE / DISCLAIMER INLINE  ───────────── */

.bwu-note{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  padding:var(--s2);
  background:var(--bg-tint);
  border:1px solid var(--border);
  border-radius:var(--r-m);
  color:var(--text-soft);
  font-size:.92rem;
}
.bwu-note .bwu-icon{color:var(--accent)}

/* ─────────────  FOOTER  ───────────── */

.bwu-footer{
  background:var(--bar);
  border-block-start:1px solid var(--border);
  padding-block:var(--s4) var(--s3);
  margin-block-start:var(--s4);
}
.bwu-footer__grid{
  display:grid;
  gap:var(--s3);
  grid-template-columns:1fr;
  align-items:start;
}
.bwu-footer__grid > *{min-width:0}
@media (min-width:800px){
  .bwu-footer__grid{grid-template-columns:1.35fr .85fr .85fr 1fr}
}
.bwu-footer__brand{display:flex;flex-direction:column;gap:var(--s2)}
.bwu-footer__about{color:var(--text-mute);font-size:.92rem}
.bwu-footer__col{display:flex;flex-direction:column;gap:var(--s1)}
.bwu-footer__title{
  font-family:var(--font-num);
  font-size:.8rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--text-mute);
}
.bwu-footer__list{list-style:none;display:flex;flex-direction:column;gap:.1rem}
.bwu-footer__list a{display:inline-block;padding-block:.5rem;color:var(--text-soft);font-size:.94rem}
.bwu-footer__list a:hover{color:var(--accent)}
.bwu-footer__contact{
  display:flex;
  flex-direction:column;
  gap:.5rem;
  font-size:.94rem;
  color:var(--text-soft);
}
.bwu-footer__contact a{display:inline-block;padding-block:.4rem}
.bwu-footer__age{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:2px solid var(--accent);
  border-radius:var(--r-s);
  color:var(--accent);
  font-family:var(--font-num);
  font-weight:700;
  font-size:.95rem;
  flex-shrink:0;
}
.bwu-footer__legal{
  display:flex;
  flex-direction:column;
  gap:var(--s2);
  margin-block-start:var(--s3);
  padding-block-start:var(--s3);
  border-block-start:1px solid var(--border);
}
.bwu-footer__disclaimer{
  display:flex;
  gap:var(--s2);
  align-items:flex-start;
  color:var(--text-mute);
  font-size:.85rem;
  line-height:1.62;
}
.bwu-footer__entity{color:var(--text-mute);font-size:.83rem;line-height:1.62}
.bwu-footer__bottom{
  margin-block-start:var(--s2);
  padding-block-start:var(--s2);
  border-block-start:1px solid var(--border-soft);
  color:var(--text-mute);
  font-family:var(--font-num);
  font-size:.8rem;
  letter-spacing:.04em;
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.bwu-footer .bwu-logo__img{filter:none;background:transparent;padding:0}
.bwu-footer .bwu-footer__logo-chip{background:transparent;padding:0}
/* sa-logo-fit */
.bwu-logo__img{object-fit:contain}
/* sa-ph-media */
.bwu-page-header:has(.bwu-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.bwu-page-header:has(.bwu-hero__img) .bwu-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.bwu-page-header:has(.bwu-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
:where(.bwu-page-header:has(.bwu-hero__img)>:not(.bwu-hero__img)){position:relative}
.bwu-page-header:has(.bwu-hero__img)>:not(.bwu-hero__img){z-index:2}
.bwu-page-header:has(.bwu-hero__img),.bwu-page-header:has(.bwu-hero__img) h1,.bwu-page-header:has(.bwu-hero__img) a,.bwu-page-header:has(.bwu-hero__img) p,.bwu-page-header:has(.bwu-hero__img) li,.bwu-page-header:has(.bwu-hero__img) span{color:#fff}
/* sa-hero-media */
.bwu-hero:has(>.bwu-hero__img){position:relative;isolation:isolate}
.bwu-hero:has(>.bwu-hero__img)>.bwu-hero__img{z-index:0}
.bwu-hero:has(>.bwu-hero__img)::after{z-index:1}
:where(.bwu-hero:has(>.bwu-hero__img)>:not(.bwu-hero__img)){position:relative}
.bwu-hero:has(>.bwu-hero__img)>:not(.bwu-hero__img){z-index:2}
/* sa-rhythm */
:where(.bwu-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.bwu-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.bwu-rtp-item,.bwu-rtp-item:hover,.bwu-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
/* sa-rtp-touch */
.bwu-rtp-item__thumb{display:block}
@media (hover:none){.bwu-rtp-item__thumb{aspect-ratio:auto;overflow:visible}.bwu-rtp-item__thumb img{height:auto}.bwu-rtp-tooltip{position:static;opacity:1;background:transparent;border-top:0;padding:.4rem .7rem 0;font-size:.74rem;line-height:1.35}.bwu-rtp-item__name{padding-top:.35rem}}
/* sa-sticky-pad */
