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

/* header J */
/* Header J — split panel: primary-bg brand zone extends to left viewport edge */

.hd-root-21p {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 60px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s, height .25s;
}

.hd-root-21p.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
}

.hd_inner-35r {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  /* No left padding: brand provides its own */
  padding: 0 var(--space-4) 0 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hd_brand-30u {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  height: 100%;
  padding: 0 var(--space-5) 0 var(--space-4);
  background: var(--primary);
  flex-shrink: 0;
  z-index: 1;
}

/* Primary color band extending to the left viewport edge */
.hd_brand-30u::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
}

/* Diagonal cut between primary and surface zones */
.hd_brand-30u::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 22px;
  background: linear-gradient(to bottom right, var(--primary) 50%, transparent 50%);
  pointer-events: none;
}

.hdLogo-10i { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; filter: brightness(0) invert(1); }

.hdNav-3u {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  padding-left: var(--space-3);
}

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

.hd-nav-link-4i:hover { color: var(--fg); }

.hd_cta-b5 {
  margin-left: auto;
  display: inline-block;
  padding: 8px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd_cta-b5:hover { opacity: .88; }

.hd_actions-u4 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  margin-left: auto;
}

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

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

.hd-mobile-nav-25c {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: var(--space-2);
}

.hd-mobile-nav-25c[hidden] { display: none !important; }
.hd-mobile-nav-25c .hd_cta-b5 { margin-left: 0; margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  /* On mobile: restore full-width layout, hide the diagonal pseudo-elements */
  .hd_inner-35r { padding: 0 var(--space-4) 0 0; }
  .hd_brand-30u::before { display: none; }
  .hd_brand-30u::after { display: none; }
  .hdNav-3u { display: none; }
  .h-burger-nc { display: flex; }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.bc-root-2b2 {
  padding: var(--space-2) var(--space-5);
}

.bc-list-ly {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.bc-item-2b5 {
  display: flex;
  align-items: center;
}

.bcLink-2tu {
  color: var(--fg);
  text-decoration: none;
}

.bcLink-2tu:hover {
  color: var(--skin-ac);
}

.bcSep-1f2 {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.bc-current-nv {
  color: var(--fg);
}


/* banner F */
/* Banner F — carousel with arrows */

.bn-root-1sz {
  position: relative;
  width: calc(100% - var(--space-5) * 2);
  max-width: var(--container-w, 1100px);
  margin: var(--section-gap, 40px) auto 0;
  overflow: hidden;
  border-radius: var(--skin-r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.bn-root-1sz::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.bn-slide-2dc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.bn-slide-2dc[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.b-img-1a {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.b-overlay-ed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  /* horizontal padding reserves space so content never sits behind arrows */
  padding: var(--space-4) 72px;
  text-align: center;
}

.bn-slide-2dc[data-dark="light"]  .b-overlay-ed { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.bn-slide-2dc[data-dark="medium"] .b-overlay-ed { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.bn-slide-2dc[data-dark="dark"]   .b-overlay-ed { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

.b-overlay-ed[data-align="left"]   { align-items: flex-start; text-align: left; }
.b-overlay-ed[data-align="center"] { align-items: center;     text-align: center; }
.b-overlay-ed[data-align="right"]  { align-items: flex-end;   text-align: right; }

.bnTitle-2zb {
  margin: 0;
  font-size: clamp(22px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.b-label-7b {
  display: inline-block;
  padding: 4px 14px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
}

.bn-badge-1pq {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.bn-subtitle-tf {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

.bn-btn-md {
  display: inline-block;
  padding: 13px 36px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--skin-r);
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bn-btn-md:hover { opacity: .9; }

.bn-btnsecondary-lt {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

.bn-btnsecondary-lt:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-1dp {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.bn-arrow-prev-1jd,
.bn-arrow-next-l1 {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bn-arrow-prev-1jd:hover,
.bn-arrow-next-l1:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bnTitle-2zb { font-size: clamp(20px, 3.5vw, 38px); }
  .b-overlay-ed { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-1jd, .bn-arrow-next-l1 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-1sz::before { padding-top: 90%; }
  .b-overlay-ed { padding-left: 48px; padding-right: 48px; }
  .bnTitle-2zb { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-md { padding: 11px 28px; font-size: 14px; }
  .bn-btnsecondary-lt { padding: 9px 20px; font-size: 13px; }
  .bn-badge-1pq { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-1jd, .bn-arrow-next-l1 { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-1dp { padding: 0 8px; }
}


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

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

.hero-titlemain-10x {
  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-t2 {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.hero_intro-1fg {
  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-86 { grid-template-columns: 1fr; gap: 16px; }
  .hero-titlemain-10x { font-size: 24px; margin-bottom: 4px; }
  .hero_titlesub-t2 { font-size: 15px; }
}


/* overview A */
/* Overview A — prose + facts table */

.ov-root-11h {
  padding: var(--card-pad);
}

.ov-title-1zd {
  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-39 {
  margin: 0 0 var(--space-4);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-table-67 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.o-td-30l {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.ov-label-2kd {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  width: 1%;
}

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


/* bonus A */
/* bonus A — table with accent top bar and primary-colored values */

.bt-root-qr {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.bt-root-qr::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: var(--radius-2) var(--radius-2) 0 0;
}

.b-title-tz {
  margin: var(--space-2) 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_table-k1 {
  width: 100%;
  border-collapse: collapse;
}

.bt_row-1t9:first-child .bt-label-207,
.bt_row-1t9:first-child .bt-value-qc {
  padding-top: var(--space-3);
}

.bt_row-1t9 + .bt_row-1t9 .bt-label-207,
.bt_row-1t9 + .bt_row-1t9 .bt-value-qc {
  border-top: 1px solid var(--border);
}

.bt_row-1t9:hover .bt-label-207,
.bt_row-1t9:hover .bt-value-qc {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

.bt-label-207,
.bt-value-qc {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
  transition: background .15s;
}

.bt-label-207 {
  color: var(--muted);
  font-weight: 500;
  padding-right: var(--space-3);
  white-space: nowrap;
}

.bt-value-qc {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

@media (max-width: 600px) {
  .bt-label-207, .bt-value-qc { font-size: 13px; }
}

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


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

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

.pr-title-1t5 {
  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-26t {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}


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

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

.lbTitle-4z {
  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);
}

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

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

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

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

.lb-card-name-2ba {
  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;
}

.lbCta-21z {
  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;
}

.lbCta-21z:hover {
  opacity: .85;
}

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


/* providers F */
/* Providers F — CSS marquee auto-scroll strip (no JS) */

.pv-root-an {
  padding: var(--card-pad);
  overflow: hidden;
}

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

@keyframes pvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pv_scroll-4a {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.pvTrack-2g2 {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: pvMarquee 28s linear infinite;
}

.pvTrack-2g2:hover {
  animation-play-state: paused;
}

.p-card-2d1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 140px;
  flex-shrink: 0;
  padding: var(--space-3) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-align: center;
  transition: border-color .2s;
}

.p-card-2d1:hover {
  border-color: rgba(var(--primary-rgb), .4);
}

.pv_logo-84 {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.pv_name-3s {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


/* payments B */
/* Payments B — cards grid */

.p-root-1eh {
  padding: var(--card-pad);
}

.pm_title-zh {
  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);
}

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

.pm-grid-lp {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.pm-card-1ir {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px var(--space-2);
  align-items: start;
}

.pm-method-2s4 {
  grid-column: 1 / -1;
  margin: 0 0 var(--space-1);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.pm-label-1tl {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.pm-value-66 {
  font-size: 13px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-align: right;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


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

.m-root-1yy {
  padding: var(--card-pad);
}

.mbTitle-2tk {
  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-lk {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.mbTable-1pe table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}

.mb-head-1k8 {
  background: var(--bg);
}

.mb-head-cell-1as {
  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;
}

.mbRow-2wy {
  border-bottom: 1px solid var(--border);
}

.mbRow-2wy:last-child {
  border-bottom: none;
}

.mbRow-2wy:nth-child(even) {
  background: var(--bg);
}

.m-cell-1ra {
  padding: 10px 14px;
  vertical-align: top;
  color: var(--text);
  line-height: 1.5;
}

.mb_cellname-11 {
  font-weight: 700;
  white-space: nowrap;
}

.mb-badge-1at {
  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-a9 {
  color: var(--muted);
  font-size: 13px;
}

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


/* registration D */
/* Registration D — grid cards with big step number */

.ht-root-2b1 {
  padding: var(--card-pad);
}

.h-title-30h {
  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);
}

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

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

.ht-card-vb {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ht-num-2nf {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
  opacity: .7;
}

.ht_heading-30d {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
}

.ht-body-2rh {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}


/* login D */
/* Login D — side-nav + content */

.lg_root-4p {
  padding: var(--card-pad);
}

.lgTitle-1m5 {
  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);
}

.lg_intro-10t {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lgLayout-2wr {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-3);
  min-height: 120px;
}

.l-nav-2g6 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--border);
  padding-right: var(--space-2);
}

.lg-nav-item-1gl {
  padding: var(--space-1) var(--space-2);
  background: none;
  border: none;
  border-radius: var(--radius-1);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  transition: background .15s, color .15s;
}

.lg-nav-item-1gl:hover { background: var(--bg); color: var(--text); }

.lg-nav-item-1gl[data-active] {
  background: var(--bg);
  color: var(--primary);
}

.l-content-cm {
  min-width: 0;
}

.lg_section-2zk { /* styled by skin */ }

.lgHeading-2jt {
  margin: 0 0 var(--space-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
}

.l-body-y9 {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 600px) {
  .lgLayout-2wr { grid-template-columns: 1fr; }
  .l-nav-2g6 {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: var(--space-1);
  }
  .lg-nav-item-1gl { white-space: nowrap; }
}


/* loyalty D */
/* Loyalty D — stripe blocks */

.loy-root-2hz {
  padding: var(--card-pad);
  overflow: hidden;
}

.loyTitle-23 {
  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);
}

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

.l-list-1zn {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-1);
  overflow: hidden;
}

.loy-item-1os {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loy-item-1os:nth-child(odd) {
  background: var(--bg);
}

.loy-name-2wg {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.loyEntry-2id {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

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


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

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

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

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

.sp_details-2l9 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.s-summary-2rf {
  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;
}

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

.sp_details-2l9[open] > .s-summary-2rf::after {
  content: "\2212";
}

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

.s-body-t p {
  margin: 0 0 var(--space-1);
}

.s-body-t p:last-child {
  margin-bottom: 0;
}


/* security D */
/* Security D — checklist */

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

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

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

.scItem-2ja {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.sc-check-1mf::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--bg);
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

.sc-text-2su {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}


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

.lc-root-2i8 {
  padding: var(--card-pad);
}

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

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

.lcThead-1iu {
  border-bottom: 2px solid var(--primary);
}

.lc_th-5g {
  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-29o + .lc-row-29o .lc-td-2qo {
  border-top: 1px solid var(--border);
}

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

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

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


/* faq C */
.faq-root-2vm {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faq-root-2vm > * {
  position: relative;
}

.faq-header-1af {
  margin-bottom: var(--space-4);
}

.faq_title-1ps {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.4vw, 26px);
}

.f-sub-28i {
  margin: 0;
  color: var(--muted);
}

.faq_grid-1b2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
}

.faqItem-205 {
  padding: var(--space-3);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
}

.faq_q-28l {
  margin: 0 0 var(--space-2);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.f-a-f9 {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


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

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

.rg_title-1sp {
  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-1d4 {
  font-size: 12px;
  color: var(--muted);
}

.rg-sites-31z {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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


/* footer D */
/* Footer D — minimal: nav top row, brand + copyright bottom */

.ft-root-td {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  padding: var(--space-4) 0 var(--space-3);
}

.ft-nav-2n2 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ftNavLink-nq {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

.ftNavLink-nq:hover { color: var(--fg); }

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

.ft-brand-2tu {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.ft-logo-zi {
  height: 36px;
  width: auto;
  display: block;
}

.ftCopy-2f4 {
  font-size: 12px;
  color: var(--muted);
}

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

