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

/* header I */
/* Header I — top crown: 3px primary bar at top, nav links with slide-in underline */

.hd-root-cn {
  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-cn.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

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

.hd-brand-2mk {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  color: var(--fg);
  flex-shrink: 0;
}

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

.hd-nav-210 {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.hd-nav-link-1sk {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}

/* Slide-in underline aligned with header bottom border */
.hd-nav-link-1sk::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.hd-nav-link-1sk:hover { color: var(--fg); }
.hd-nav-link-1sk:hover::after { transform: scaleX(1); }

.hd-cta-xr {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0;
  margin: 8px 0;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-xr:hover { opacity: .88; }

.hd-actions-dq {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.hd-mobile-nav-fe {
  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-fe[hidden] { display: none !important; }
.hd-mobile-nav-fe .hd-nav-link-1sk::after { display: none; }
.hd-mobile-nav-fe .hd-cta-xr { margin: var(--space-2) 0 0; text-align: center; border-radius: var(--radius-1); }

@media (max-width: 768px) {
  .hd-nav-210 { display: none; }
  .h-burger-2la { display: flex; }
}


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

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

.bcList-a7 {
  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;
}

.bcItem-qo {
  display: flex;
  align-items: center;
}

.bc_link-1ej {
  color: var(--fg);
  text-decoration: none;
}

.bc_link-1ej:hover {
  color: var(--skin-ac);
}

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

.bcCurrent-54 {
  color: var(--fg);
}


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

.bn-root-1xq {
  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-1xq::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

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

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

.bnOverlay-2ca {
  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-19b[data-dark="light"]  .bnOverlay-2ca { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.bn-slide-19b[data-dark="medium"] .bnOverlay-2ca { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.bn-slide-19b[data-dark="dark"]   .bnOverlay-2ca { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

.bnOverlay-2ca[data-align="left"]   { align-items: flex-start; text-align: left; }
.bnOverlay-2ca[data-align="center"] { align-items: center;     text-align: center; }
.bnOverlay-2ca[data-align="right"]  { align-items: flex-end;   text-align: right; }

.b-title-158 {
  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;
}

.bnLabel-16o {
  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-2z5 {
  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-1vy {
  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-31q {
  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-31q:hover { opacity: .9; }

.b-btnsecondary-5s {
  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;
}

.b-btnsecondary-5s:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-m4 {
  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-19e,
.bn-arrow-next-1eu {
  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-19e:hover,
.bn-arrow-next-1eu:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .b-title-158 { font-size: clamp(20px, 3.5vw, 38px); }
  .bnOverlay-2ca { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-19e, .bn-arrow-next-1eu { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-1xq::before { padding-top: 90%; }
  .bnOverlay-2ca { padding-left: 48px; padding-right: 48px; }
  .b-title-158 { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-31q { padding: 11px 28px; font-size: 14px; }
  .b-btnsecondary-5s { padding: 9px 20px; font-size: 13px; }
  .bn-badge-2z5 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-19e, .bn-arrow-next-1eu { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-m4 { padding: 0 8px; }
}


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

.hero_root-7v {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.h-titlemain-6m {
  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-title-sub-j7 {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.hero-intro-1sz {
  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-7v { grid-template-columns: 1fr; gap: 16px; }
  .h-titlemain-6m { font-size: 24px; margin-bottom: 4px; }
  .hero-title-sub-j7 { font-size: 15px; }
}


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

.ovRoot-28o {
  padding: var(--card-pad);
}

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

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

.ovTd-nc {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

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

.ov-screenshot-2lg {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.ov-screenshot-2lg 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-6m {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.bt_root-6m::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;
}

.bt-title-298 {
  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-25q {
  width: 100%;
  border-collapse: collapse;
}

.b-row-iu:first-child .bt-label-1b4,
.b-row-iu:first-child .bt-value-28z {
  padding-top: var(--space-3);
}

.b-row-iu + .b-row-iu .bt-label-1b4,
.b-row-iu + .b-row-iu .bt-value-28z {
  border-top: 1px solid var(--border);
}

.b-row-iu:hover .bt-label-1b4,
.b-row-iu:hover .bt-value-28z {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

@media (max-width: 600px) {
  .bt-label-1b4, .bt-value-28z { font-size: 13px; }
}

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


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

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

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

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

.pm_card-cp {
  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;
}

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

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

.pm-value-32c {
  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;
}


/* lobby A */
/* Lobby A — simple grid: img above name, centered CTA */

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

.lb-title-9m {
  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-230 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb_card-2du {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.lb_card-2du:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.lbCardImg-7t {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.lbCardName-2yh {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  text-align: center;
}

.lb-cta-xa {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

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

@media (max-width: 600px) {
  .lb_grid-230 { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: var(--space-2); }
  .lb_card-2du { padding: 8px; }
  .lbCardName-2yh { font-size: 12px; }
}

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


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

.p-root-fx {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-2tj {
  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-2ic {
  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-tz {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

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

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

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

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

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


/* faq A */
.faq-root-24c {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faq-root-24c>* {
  position: relative;
}

.faq-title-1m2 {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.faq_intro-1i6 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.f-item-283 {
  border-bottom: 1px solid var(--border);
}

.f-item-283:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.faq-q-1nr {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.faq-q-1nr:hover {
  color: var(--brand);
}

.faq-q-1nr::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.faq-q-1nr[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

.faq-a-307 {
  padding: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* rg C */
/* RG C — card grid of help sites + helpline footer */

.rg-root-12l {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-2yp {
  margin: 0 0 var(--space-3);
  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_grid-1yh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.rg-card-1t3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-decoration: none;
  transition: border-color .15s;
}

.rg-card-1t3:hover {
  border-color: var(--primary);
}

.rg_cardname-26c {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.rg-card-url-gw {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rg_helpline-s0 {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}


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

.ft_root-2t4 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  padding: var(--space-4) 0 var(--space-3);
}

.f-nav-1d1 {
  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;
}

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

.ft-nav-link-31l:hover { color: var(--fg); }

.ft-inner-15s {
  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-1ml {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

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

.ft-copy-15p {
  font-size: 12px;
  color: var(--muted);
}

.ftDisclaimer-1tr {
  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;
}

