
/* shell */
.section-9i{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section-dense-at{ padding:var(--section-gap-dense,16px) 0 0; }
.container-fq{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-9i:not(.section-dense-at) > .container-fq{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-9i{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section-dense-at{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header L */
/* Header L — vertical sidebar (desktop) · burger-left top bar (mobile) */

:root { --hd-sidebar-w: 220px; }

/* ─── Desktop: fixed left sidebar ──────────────────────────────────────── */

@media (min-width: 769px) {
  body { padding-left: var(--hd-sidebar-w); padding-top: var(--space-5, 40px); }

  .hd-root-n2 {
    position: fixed;
    top: 0; left: 0;
    width: var(--hd-sidebar-w);
    height: 100vh;
    z-index: 1000;
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .hd-inner-lu { display: none; }
  .hd-overlay-pu { display: none !important; }

  .hd-sidebar-9q {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--space-4) var(--space-3) var(--space-4);
    gap: var(--space-1);
  }

  .hd-sidebar-9q .hd-brand-mf {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
  }

  .hd-sidebar-9q .hd-logo-ol {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  .hd-nav-6j {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
  }

  .hd-nav-link-rb {
    display: flex;
    align-items: center;
    padding: 10px var(--space-2);
    color: var(--fg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-1);
    opacity: 0.7;
    transition: background .18s, opacity .18s, color .18s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hd-nav-link-rb:hover { background: rgba(128,128,128,.12); opacity: 1; color: var(--primary); }

  .hd-sidebar-9q .hd-actions-dd {
    flex-shrink: 0;
    padding: var(--space-2) var(--space-2) var(--space-4);
    margin-top: var(--space-3);
  }

  .hd-cta-44 {
    display: block;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--radius-1);
    text-align: center;
    transition: opacity .2s;
    white-space: nowrap;
  }

  .hd-cta-44:hover { opacity: .85; }
}

/* ─── Mobile: fixed top bar + left drawer ───────────────────────────────── */

@media (max-width: 768px) {
  body { padding-top: var(--hd-height, 56px); padding-left: 0; }

  .hd-root-n2 {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--hd-height, 56px);
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  /* Top bar */
  .hd-inner-lu {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-3);
    gap: var(--space-2);
  }

  /* Burger — leftmost */
  .hd-burger-9j {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    order: 0;
  }

  .hd-burger-9j span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }

  .hd-burger-9j.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hd-burger-9j.hd-open span:nth-child(2) { opacity: 0; }
  .hd-burger-9j.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Brand — centered */
  .hd-inner-lu .hd-brand-mf {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    overflow: hidden;
    order: 1;
  }

  .hd-inner-lu .hd-logo-ol {
    height: calc(var(--hd-height, 56px) - 20px);
    width: auto;
    display: block;
  }

  /* CTA — right */
  .hd-inner-lu .hd-actions-dd {
    flex-shrink: 0;
    order: 2;
  }

  .hd-inner-lu .hd-cta-44 {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: var(--radius-1);
    white-space: nowrap;
  }

  /* Sidebar = left drawer on mobile */
  .hd-sidebar-9q {
    position: fixed;
    top: 0; left: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    z-index: 1002;
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: var(--space-4) var(--space-3);
    gap: var(--space-1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }

  .hd-sidebar-9q.hd-open { transform: translateX(0); }

  .hd-sidebar-9q .hd-brand-mf {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    flex-shrink: 0;
  }

  .hd-sidebar-9q .hd-logo-ol {
    height: 32px;
    width: auto;
    display: block;
  }

  .hd-nav-6j {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
  }

  .hd-nav-link-rb {
    display: flex;
    align-items: center;
    padding: 13px var(--space-2);
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    opacity: 0.85;
    transition: color .18s, opacity .18s;
  }

  .hd-nav-link-rb:last-child { border-bottom: none; }
  .hd-nav-link-rb:active { color: var(--primary); opacity: 1; }

  .hd-sidebar-9q .hd-actions-dd {
    flex-shrink: 0;
    padding-top: var(--space-3);
    padding-bottom: var(--space-4);
  }

  .hd-sidebar-9q .hd-cta-44 {
    display: block;
    padding: 13px 20px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--radius-1);
    text-align: center;
    transition: opacity .2s;
  }

  .hd-sidebar-9q .hd-cta-44:hover { opacity: .85; }

  /* Overlay */
  .hd-overlay-pu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .hd-overlay-pu[hidden] { display: none; }
}


/* hero D */
/* Hero D — eyebrow label + large h1 + intro */

.hero-root-6i {}

.hero-eyebrow-59 {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-title-mw {
  margin: 0 0 28px;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-pc {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .hero-eyebrow-59 { font-size: 11px; margin-bottom: 8px; }
  .hero-title-mw { font-size: 28px; margin-bottom: 18px; }
}


/* overview C */
/* Overview C — prose + DL sidebar */

.ov-root-j1 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--card-pad);
}

.ov-text-ny {
  min-width: 0;
}

.ov-title-f5 {
  margin: 0 0 var(--space-2);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.ov-body-d9 {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-dl-85 {
  margin: 0;
  min-width: 180px;
  max-width: 240px;
  padding: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.ov-dt-6t {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: var(--space-2);
}

.ov-dt-6t:first-child {
  margin-top: 0;
}

.ov-dd-9h {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ov-root-j1 { grid-template-columns: 1fr; }
  .ov-dl-85 { max-width: none; }
}


/* lobby C */
/* Lobby C — overlay name on image, compact grid */

.lb-root-b7 {
  padding: var(--card-pad);
}

.lb-title-hb {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.lb-grid-gz {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb-card-oh {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-1);
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s;
  cursor: pointer;
}

.lb-card-oh:hover {
  transform: scale(1.03);
}

.lb-card-img-7c {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.lb-card-name-oa {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  line-height: 1.3;
}

.lb-cta-gz {
  display: inline-block;
  padding: 11px 28px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.lb-cta-gz:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .lb-grid-gz { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-2); }
  .lb-card-name-oa { font-size: 12px; padding: 6px 8px; }
}


/* providers B */
/* Providers B — horizontal directory rows (logo + bold name) */

.pv-root-qf {
  padding: var(--card-pad);
}

.pv-title-qb {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.pv-intro-kn {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pv-grid-8n {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.pv-card-m5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .15s;
}

.pv-card-m5:nth-child(even) { border-right: none; }
.pv-card-m5:nth-last-child(-n+2) { border-bottom: none; }
.pv-card-m5:hover { background: rgba(var(--primary-rgb), .05); }

.pv-logo-ec {
  width: 72px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(.9);
}

.pv-name-qo {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .pv-grid-8n { grid-template-columns: 1fr; }
  .pv-card-m5 { border-right: none !important; }
  .pv-card-m5:last-child { border-bottom: none; }
}


/* crash D */
/* Crash D — numbered list rows with thumbnail */

.cr-root-ar {
  padding: var(--card-pad);
}

.cr-badge-ou {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--bg);
  margin-bottom: var(--space-2);
}

.cr-title-cf {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.cr-intro-n7 {
  margin: 0 0 var(--space-4);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.cr-list-gf {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cr-row-39 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
  transition: background .15s;
}

.cr-row-39:hover {
  background: color-mix(in srgb, var(--primary) 6%, var(--bg));
}

.cr-row-num-j {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.cr-row-img-jo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-1);
  flex-shrink: 0;
  background: var(--border);
}

.cr-row-name-7i {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* winners D */
/* Winners D — leaderboard with rank badges */

.wn-root-7s { padding: var(--card-pad); }

.wn-title-46 {
  margin: 0 0 var(--space-3);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.wn-table-d0 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wn-row-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.wn-rank-1 { border-color: #ffd700; background: rgba(255,215,0,.06); }
.wn-rank-2 { border-color: #c0c0c0; background: rgba(192,192,192,.05); }
.wn-rank-3 { border-color: #cd7f32; background: rgba(205,127,50,.05); }

.wn-rank-pi {
  width: 22px;
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
  text-align: center;
  flex-shrink: 0;
}
.wn-rank-1 .wn-rank-pi { color: #ffd700; }
.wn-rank-2 .wn-rank-pi { color: #c0c0c0; }
.wn-rank-3 .wn-rank-pi { color: #cd7f32; }

.wn-avatar-5l {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem;
  color: #000;
  flex-shrink: 0;
}

.wn-user-pf {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.wn-game-gy {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.wn-amount-bg {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}


/* reviews F */
/* Reviews F — stacked cards with top accent progress bar */

.rv-root-fa { padding: var(--card-pad); }

.rv-title-os {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.rv-stack-le {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-3);
}

.rv-item-8p {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rv-bar-b7 {
  height: 4px;
  background: rgba(255,255,255,.08);
}

.rv-fill-jr {
  height: 100%;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
  transition: width .3s ease;
}

.rv-body-6e {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.rv-text-bt {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

.rv-foot-56 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}

.rv-stars-k3 {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 1px;
}

.rv-name-ex {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-left: auto;
}


/* sticky-banner B */
/* Variant B — вертикальний sticky банер, велика CTA
   HTML: bnRoot > bnInner(relative, flex col) > bnClose(absolute) + bnLabel + bnTitle + bnSub + bnCta */

@keyframes bnSlideUp   { from { transform: translateY(100%); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateY(0); opacity: 1 } to { transform: translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }
@keyframes bnPopUp  { from { transform: translateY(100%) scaleY(.6); opacity: 0 } to { transform: translateY(0) scaleY(1); opacity: 1 } }
@keyframes bnPopOut { from { transform: translateY(0) scaleY(1); opacity: 1 } to { transform: translateY(100%) scaleY(.6); opacity: 0 } }

.bn-root-9 {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}
.bn-root-9[hidden] { display: none; }

.bn-inner-ab {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 48px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 40px rgba(0,0,0,.5);
  box-sizing: border-box;
}

.bn-close-f {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent; border: 0;
  cursor: pointer; color: var(--muted);
  font-size: 16px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: color .15s, background .15s;
  line-height: 1;
}
.bn-close-f:hover { color: var(--text); background: rgba(255,255,255,.08); }

.bn-label-jt {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 10px; border-radius: var(--skin-r);
}
.bn-title-2t { margin: 0; font-weight: 800; font-size: clamp(16px,2vw,20px); }
.bn-sub-ll   { margin: 0; font-size: 13px; color: var(--muted); }
.bn-cta-np   {
  display: block; width: 100%; max-width: 420px;
  padding: 14px 24px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-align: center; text-decoration: none; cursor: pointer;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .bn-inner-ab { padding: 16px 16px 20px; gap: 6px; }
  .bn-close-f { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 15px; }
  .bn-title-2t { font-size: 15px; padding: 0 32px; }
  .bn-sub-ll   { display: none; }
  .bn-cta-np   { max-width: 100%; padding: 12px 16px; font-size: 14px; }
}


/* bonus C */
/* bonus C — definition list: colored values, row separators */

.bt-root-dh {
  padding: var(--card-pad);
}

.bt-title-bt {
  margin: 0 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.bt-list-pl {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.bt-label-65 {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  white-space: nowrap;
}

.bt-value-iy {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  padding: var(--space-2) 0 var(--space-2) var(--space-2);
  border-bottom: 1px solid var(--border);
  margin: 0;
  text-align: right;
}

/* last pair — no bottom border */
.bt-label-65:last-of-type { border-bottom: none; }
.bt-value-iy:last-child   { border-bottom: none; }

@media (max-width: 500px) {
  .bt-list-pl { grid-template-columns: 1fr; }
  .bt-label-65 { border-bottom: none; padding-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
  .bt-value-iy { padding-left: 0; margin-bottom: var(--space-2); }
}


/* payments D */
/* Payments D — compact two-column table */

.pm-root-qp {
  padding: var(--card-pad);
}

.pm-title-6d {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.pm-intro-91 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pm-table-57 {
  width: 100%;
  border-collapse: collapse;
}

.pm-row-5z + .pm-row-5z .pm-method-1g,
.pm-row-5z + .pm-row-5z .pm-info-ex {
  border-top: 1px solid var(--border);
}

.pm-method-1g,
.pm-info-ex {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.pm-method-1g {
  font-weight: 700;
  color: var(--primary);
  padding-right: var(--space-3);
  white-space: nowrap;
  width: 25%;
}

.pm-info-ex {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .pm-method-1g { white-space: normal; width: 35%; }
  .pm-method-1g, .pm-info-ex { font-size: 13px; }
}


/* mobile E */
/* Mobile E — accordion: details/summary per platform + feature chips inside */

.mb-root-85 {
  padding: var(--card-pad);
}

.mb-title-e9 {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.mb-intro-kh {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* accordion */
.mb-accordion-cp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mb-details-lx {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
  transition: border-color .15s;
}

.mb-details-lx[open] {
  border-color: var(--primary);
}

.mb-summary-f7 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: var(--bg);
}

.mb-summary-f7::-webkit-details-marker { display: none; }

.mb-summary-f7::after {
  content: "+";
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  transition: transform .15s;
}

.mb-details-lx[open] .mb-summary-f7::after {
  content: "−";
  color: var(--primary);
}

.mb-details-lx[open] .mb-summary-f7 {
  background: rgba(var(--primary-rgb), .05);
}

.mbPlatName {
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  flex: 1;
}

.mb-badge-ig {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  border-radius: 99px;
}

.mb-body-pp {
  padding: 10px 14px 12px;
  background: var(--surface);
}

.mb-chips-po {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mb-chip-47 {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* security E */
/* Security E — accordion */

.sc-root-lf {
  padding: var(--card-pad);
}

.sc-title-nb {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.sc-intro-37 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sc-list-nj {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sc-details-hb {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.sc-summary-21 {
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}

.sc-summary-21::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.sc-details-hb[open] > .sc-summary-21::after {
  content: "\2212";
}

.sc-body-af {
  margin: 0;
  padding: 0 var(--space-3) var(--space-3);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}


/* prose B */
/* Prose B — wide, generous spacing */

.pr-root-ot {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.pr-h2-br {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr-h3-mc {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-g7 {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.pr-list-ld {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.pr-li-lq {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.pr-table-bb {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.pr-thead-5d {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.pr-th-h5 {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pr-td-3x {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.pr-image-6i {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* prose C */
/* Prose C — narrow blog-style column */

.pr-root-n2 {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-1w {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-j3 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-9a {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.pr-list-5y {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-ep {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.pr-table-fi {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 13px;
}

.pr-th-ny {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.pr-td-82 {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

.pr-image-jb {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-3) auto;
}


/* support D */
/* Support D — accordion */

.sp-root-9e {
  padding: var(--card-pad);
}

.sp-title-jc {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.sp-intro-9s {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sp-list-7m {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sp-details-pg {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.sp-summary-8y {
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}

.sp-summary-8y::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.sp-details-pg[open] > .sp-summary-8y::after {
  content: "\2212";
}

.sp-body-e2 {
  padding: 0 var(--space-3) var(--space-3);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.sp-body-e2 p {
  margin: 0 0 var(--space-1);
}

.sp-body-e2 p:last-child {
  margin-bottom: 0;
}


/* rg A */
/* RG A — compact aside: title + chip links + helpline */

.rg-root-6s {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.rg-title-82 {
  margin: 0 0 var(--space-2);
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rg-sites-5o {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-2);
}

.rg-site-link-z {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  transition: background .15s;
}

.rg-site-link-z:hover {
  background: rgba(var(--primary-rgb), .08);
}

.rg-helpline-c5 {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}


/* footer B */
/* Footer B — centered stacked: brand → nav → disclaimer → copyright */

.ft-root-b2 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}

.ft-inner-dm {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.ft-brand-33 {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.ft-logo-5h {
  height: 40px;
  width: auto;
  display: block;
}

.ft-nav-bf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft-nav-link-5r {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.ft-nav-link-5r:hover { color: var(--fg); }

.ft-disclaimer-il {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 700px;
}

.ft-copy-53 {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--space-1);
}

