
/* shell */
.section-1an{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section_dense-15a{ padding:var(--section-gap-dense,16px) 0 0; }
.container-1vz{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-1an:not(.section_dense-15a) > .container-1vz{ 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-1an{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section_dense-15a{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header G */
/* Header G — neon glow: dark bg, primary glow bottom edge, glowing CTA */

.h-root-d4 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 64px);
  background: var(--bg);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--primary) 55%, transparent),
    0 6px 32px color-mix(in srgb, var(--primary) 10%, transparent);
  transition: box-shadow .3s, height .25s;
}

.h-root-d4.hd-scrolled {
  height: calc(var(--hd-height, 64px) - 8px);
  box-shadow:
    0 1px 0 var(--primary),
    0 8px 48px color-mix(in srgb, var(--primary) 28%, transparent);
}

.h-inner-74 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.h-brand-1nh {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 22px color-mix(in srgb, var(--primary) 60%, transparent);
  flex-shrink: 0;
}

.hd-logo-1zr { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; }

.hd-nav-ed {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
}

.hd-nav-link-2bt {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, text-shadow .2s;
  white-space: nowrap;
}

.hd-nav-link-2bt:hover {
  color: var(--fg);
  text-shadow: 0 0 12px color-mix(in srgb, var(--primary) 70%, transparent);
}

.hd_cta-rm {
  display: inline-block;
  padding: 8px 22px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid color-mix(in srgb, var(--primary) 65%, transparent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  box-shadow: 0 0 14px color-mix(in srgb, var(--primary) 18%, transparent);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd_cta-rm:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 0 30px color-mix(in srgb, var(--primary) 55%, transparent);
}

.hdActions-217 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hd-burger-4l {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hd-burger-4l span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hd-burger-4l.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger-4l.hd-open span:nth-child(2) { opacity: 0; }
.hd-burger-4l.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hd_mobilenav-rn {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--bg) 96%, var(--primary));
  border-top: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  gap: var(--space-2);
}

.hd_mobilenav-rn[hidden] { display: none !important; }
.hd_mobilenav-rn .hd-nav-link-2bt { font-size: 15px; padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--border); text-shadow: none; }
.hd_mobilenav-rn .hd-nav-link-2bt:hover { color: var(--fg); text-shadow: none; }
.hd_mobilenav-rn .hd_cta-rm { margin-top: var(--space-2); text-align: center; background: var(--primary); color: var(--bg); border-color: var(--primary); box-shadow: none; }

@media (max-width: 768px) {
  .hd-nav-ed { display: none; }
  .hd-burger-4l { display: flex; }
}


/* hero F */
/* Hero F — two-column grid: split title left, intro right */

.hero-root-2an {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero_titlemain-1gi {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-titlesub-29j {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.h-intro-23z {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  align-self: center;
}

@media (max-width: 600px) {
  .hero-root-2an { grid-template-columns: 1fr; gap: 16px; }
  .hero_titlemain-1gi { font-size: 24px; margin-bottom: 4px; }
  .hero-titlesub-29j { font-size: 15px; }
}


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

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

.ov-text-1g9 {
  min-width: 0;
}

.ovTitle-1dg {
  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-106 {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-dl-tm {
  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);
}

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

.o-dt-5e:first-child {
  margin-top: 0;
}

.ov_dd-1hu {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

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


/* bonus B */
/* bonus B — vertical rows: label left, value right */

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

.b-title-sj {
  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-grid-1qf {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bt-card-2th {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  background: var(--bg);
  min-width: 0;
}

.bt-card-2th:first-child {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary) 15%, var(--surface)),
    color-mix(in srgb, var(--secondary) 10%, var(--surface)));
  border-color: var(--primary);
  padding: var(--space-4);
}

.bt-label-1n {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  line-height: 1.4;
  flex-shrink: 0;
  white-space: nowrap;
}

.btValue-13k {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.4;
  text-align: right;
  overflow-wrap: break-word;
  min-width: 0;
}

.bt-card-2th:first-child .bt-label-1n {
  font-size: 12px;
}

.bt-card-2th:first-child .btValue-13k {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--primary);
}

@media (max-width: 480px) {
  .bt-card-2th {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .btValue-13k { text-align: left; }
}


/* pros-cons E */
/* Pros-Cons E — stacked sections with count badge */

.pc-root-2ly { padding: var(--card-pad); }

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

.pcSection-2fx {
  border-radius: var(--radius-1);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.pcSection-2fx:last-child { margin-bottom: 0; }

.pc_sechead-l5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-3);
}

.pc-section-pros .pc_sechead-l5 { background: rgba(46,204,113,.12); border-bottom: 1px solid rgba(46,204,113,.18); }
.pc-section-cons .pc_sechead-l5 { background: rgba(231,76,60,.10);  border-bottom: 1px solid rgba(231,76,60,.18); }

.pc-sec-title-1wz {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
}

.pcSecCount-gy {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.pc-count-pros { background: rgba(46,204,113,.2); color: #2ecc71; }
.pc-count-cons { background: rgba(231,76,60,.15);  color: #e74c3c; }

.pc_list-gu {
  list-style: none;
  margin: 0;
  padding: var(--space-2);
  background: rgba(255,255,255,.02);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-1);
}

.pc-item-261 {
  padding: 9px 10px 9px 30px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  border-radius: calc(var(--radius-1) - 4px);
  position: relative;
}

.pc-pro {
  background: rgba(46,204,113,.06);
}
.pc-pro::before {
  content: '✓';
  position: absolute;
  left: 9px; top: 9px;
  color: #2ecc71;
  font-size: 12px;
  font-weight: 900;
}

.pc-con {
  background: rgba(231,76,60,.05);
}
.pc-con::before {
  content: '✕';
  position: absolute;
  left: 9px; top: 9px;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 900;
}


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

.p-root-18g {
  padding: var(--card-pad);
}

.pm-title-1wu {
  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-2yy {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.p-table-27g {
  width: 100%;
  border-collapse: collapse;
}

.p-row-ks + .p-row-ks .pm-method-1g9,
.p-row-ks + .p-row-ks .pm-info-104 {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* mobile A */
/* Mobile A — H2 + intro + classic responsive table */

.mb_root-ak {
  padding: var(--card-pad);
}

.mb_title-1d6 {
  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-28u {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* scrollable table wrapper */
.mb-table-328 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.mb-table-328 table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}

.m-head-jy {
  background: var(--bg);
}

.mb_headcell-1s6 {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.mb-row-2eg {
  border-bottom: 1px solid var(--border);
}

.mb-row-2eg:last-child {
  border-bottom: none;
}

.mb-row-2eg:nth-child(even) {
  background: var(--bg);
}

.mb-cell-2jk {
  padding: 10px 14px;
  vertical-align: top;
  color: var(--text);
  line-height: 1.5;
}

.m-cellname-20z {
  font-weight: 700;
  white-space: nowrap;
}

.mb_badge-vb {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  border-radius: 99px;
  white-space: nowrap;
}

.mb_cellfeatures-2iv {
  color: var(--muted);
  font-size: 13px;
}

.m-screenshot-88 {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.m-screenshot-88 img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


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

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

.sc-title-312 {
  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-y {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.sc-summary-jc {
  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-jc::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.sc-details-20m[open] > .sc-summary-jc::after {
  content: "\2212";
}

.sc_body-2zw {
  margin: 0;
  padding: 0 var(--space-3) var(--space-3);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}


/* license A */
/* License A — four-column table */

.lc-root-1fy {
  padding: var(--card-pad);
}

.lc-title-18s {
  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);
}

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

.lc-table-y6 {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.lc-thead-1d0 {
  border-bottom: 2px solid var(--primary);
}

.lc_th-1c6 {
  padding: var(--space-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  text-align: left;
  white-space: nowrap;
}

.lc-row-2va + .lc-row-2va .l-td-1wq {
  border-top: 1px solid var(--border);
}

.l-td-1wq {
  padding: var(--space-2);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  vertical-align: top;
}

.lc-reg-34w {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.lc-note-12e {
  font-size: 13px;
  color: var(--muted);
}


/* lobby H */
/* Lobby H — carousel with prev/next arrows, badge pills, hover play+demo overlay */

.lb-root-26n {
  padding: var(--card-pad);
  overflow: hidden;
}

/* ── Header ── */
.l-header-8y {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lbHeaderLeft-167 {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lb-icon-1rm {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.lb-title-28z {
  margin: 0;
  font-size: clamp(calc(14px * var(--title-scale)), 2vw, calc(22px * var(--title-scale)));
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lbHeaderRight-1cw {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lb-cta-link-qz {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  color: var(--fg-muted, rgba(255,255,255,.5));
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s, color .18s;
}

.lb-cta-link-qz:hover { border-color: var(--primary); color: var(--primary); }

.lb_prev-1ry,
.lbNext-1ka {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2, rgba(255,255,255,.06));
  color: var(--fg-muted, rgba(255,255,255,.6));
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}

.lb_prev-1ry:hover, .lbNext-1ka:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.lb_prev-1ry:disabled, .lbNext-1ka:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ── Carousel ── */
.lb-viewport-2sh {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.lb-viewport-2sh::-webkit-scrollbar { display: none; }

.lb-track-nm {
  display: flex;
  gap: var(--item-gap);
  width: max-content;
}

/* ── Cards ── */
.lb-card-1lx {
  flex: 0 0 var(--card-min-w);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.lb-card-media-2mb {
  position: relative;
  width: var(--card-min-w);
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}

.lbCardImg-18k {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-1lx:hover .lbCardImg-18k { transform: scale(1.06); }

/* ── Badge pills ── */
.lbBadge-2bm {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.lb-badge-hot { background: #F97316; }
.lb-badge-top { background: #7C3AED; }
.lb-badge-neu { background: #EF4444; }

/* ── Hover overlay ── */
.lbCardOverlay-30j {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,.68);
  opacity: 0;
  transition: opacity .2s;
  z-index: 3;
  padding: 8px;
}

.lb-card-1lx:hover .lbCardOverlay-30j { opacity: 1; }

.lb_cardname-206 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
  order: 1;
}

.lb-play-btn-2mb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding-left: 2px;
  flex-shrink: 0;
  order: 2;
  transition: transform .15s;
  text-decoration: none;
}

.lb-card-1lx:hover .lb-play-btn-2mb { transform: scale(1.1); }

.l-demobtn-28w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: var(--radius-1);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  order: 3;
  text-decoration: none;
}

/* ── Provider text below card ── */
.lb-provider-2le {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-muted, rgba(255,255,255,.4));
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: var(--card-min-w);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lb-card-1lx      { flex: 0 0 145px; }
  .lb-card-media-2mb { width: 145px; }
  .lb-provider-2le  { max-width: 145px; }
  .lb-play-btn-2mb   { width: 30px; height: 30px; font-size: 11px; }
}


/* providers A */
/* Providers A — full-width logo grid (lobby-style cards) */

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

.pv-title-9o {
  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-1xw {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pv-grid-2z6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-3);
}

.pv-card-2o0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-2) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.pv-card-2o0:hover {
  border-color: rgba(var(--primary-rgb), .4);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

.pv_logo-2d9 {
  width: 100%;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.pvName-8h {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 600px) {
  .pv-grid-2z6 { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-2); }
}


/* loyalty F */
/* Loyalty F — split layout (name left, details right) */

.loyRoot-262 {
  padding: var(--card-pad);
}

.loy_title-94 {
  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);
}

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

.loy-list-32y {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loy-item-j1 {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.loy-name-19 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.loy-details-2r8 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loy_entry-32u {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.loy-perks-2nn {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .loy-item-j1 { grid-template-columns: 1fr; gap: 4px; }
  .loy-name-19 { font-size: 16px; }
}


/* promo F */
/* Promo F — prose */

.pr-root-2c3 {
  padding: var(--card-pad);
}

.pr-title-27b {
  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);
}

.pr-body-br {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}


/* support C */
/* Support C — compact list */

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

.sp_title-u0 {
  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-1h4 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sp-list-q2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sp-item-1r1 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.sp-item-1r1:last-child {
  border-bottom: none;
}

.sp-channel-2dl {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.sp-hours-20t {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}


/* reviews D */
/* Reviews D — compact list rows */

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

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

.rv-list-2wx {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}

.rv_item-1t2 {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.rv_item-1t2:last-child { border-bottom: none; }

.rvRating-1ao {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  gap: 2px;
}

.rv-stars-1gm {
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
}

.rv-score {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.rvBody {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rvText-29q {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.rvName-86 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.rvDate-23d {
  font-size: 11px;
  color: var(--muted);
}


/* winners A */
/* Winners A — horizontal scrollable cards */

.wnRoot-g8 { padding: var(--card-pad); }

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

.wnScroll-2ld {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.wnScroll-2ld::-webkit-scrollbar { display: none; }

.wn-card-2um {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: 10px 14px;
  min-width: 200px;
}

.wn_avatar-2a1 {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.w-info-2p8 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wn_user-2sz {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w-amount-1fw {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.w-game-2wi {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* prose A */
/* Prose A — standard */

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

.pr-h2-22l {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.pr-h3-1re {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-20l {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.prList-12n {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

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

.prTable-1zt {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 14px;
}

.pr-thead-287 {
  background: var(--skin-ac);
}

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

.prTbody-2l5 tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

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

.pr-image-2gs {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1, 4px);
  margin: var(--space-3) 0;
}


/* sticky-banner C */
/* Variant C — тонкий однорядковий sticky банер з таймером
   HTML: bnRoot > bnInner(relative, flex row) > bnLabel + bnTitle + bnTimer + bnCta + bnClose(absolute) */

@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 bnWipeIn  { from { clip-path: inset(0 100% 0 0); opacity: .5 } to { clip-path: inset(0 0 0 0); opacity: 1 } }
@keyframes bnWipeOut { from { clip-path: inset(0 0 0 0); opacity: 1 } to { clip-path: inset(0 100% 0 0); opacity: 0 } }

.bnRoot-17h {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}
.bnRoot-17h[hidden] { display: none; }

.bn-inner-24f {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 48px 10px 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

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

.bn-label-2qt {
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--skin-r);
}
.bnTitle-nl { font-weight: 700; font-size: 14px; }
.b-timer-3u {
  font-weight: 800; font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  padding: 1px 8px; border-radius: var(--skin-r);
}
.bn-cta-nl {
  padding: 6px 16px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 13px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
}

@media (max-width: 600px) {
  .bn-inner-24f { padding: 10px 42px 10px 12px; gap: 8px; }
  .bn-label-2qt { display: none; }
  .bnTitle-nl { font-size: 13px; }
  .b-timer-3u { font-size: 13px; }
  .bn-cta-nl   { font-size: 12px; padding: 6px 10px; }
  .bn-close-2p7 { right: 8px; width: 28px; height: 28px; font-size: 16px; }
}


/* rg B */
/* RG B — two-line header (title + helpline) then sites row */

.r-root-2k2 {
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--muted);
}

.rg_title-pc {
  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-helpline-yb {
  font-size: 12px;
  color: var(--muted);
}

.r-sites-15e {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rg-site-link-61 {
  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-61:hover {
  background: rgba(var(--primary-rgb), .08);
}


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

.ft-root-29u {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-3);
}

.ft_inner-1y {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ftBrand-16z {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.ft-logo-2h5 {
  height: 40px;
  width: auto;
  display: block;
}

.f-nav-24n {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.ftNavLink-2aj {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  white-space: nowrap;
}

.ftNavLink-2aj:hover { color: var(--primary); }

.ft-disclaimer-1ap {
  max-width: var(--container-w, 1100px);
  margin: var(--space-4) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.ft-copy-1wr {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .ft_inner-1y { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .f-nav-24n { justify-content: flex-start; }
}

