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

/* header A */
/* Header A — classic: logo left, nav center, CTA right */

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

.c_63026.hd-scrolled {
  height: calc(var(--hd-height, 64px) - 10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(10px);
}

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

.c_3c865 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

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

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

.c_ffdbe {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}

.c_ffdbe:hover { opacity: 1; color: var(--primary); }

.c_25fd0 {
  display: inline-block;
  padding: 9px 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;
}

.c_25fd0:hover { opacity: .88; }

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

.c_7f2c9 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

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

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

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

.c_3e245[hidden] { display: none !important; }

.c_3e245 .c_ffdbe {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  opacity: 1;
}

.c_3e245 .c_25fd0 {
  margin-top: var(--space-2);
  text-align: center;
}

@media (max-width: 768px) {
  .c_9f683 { display: none; }
  .c_7f2c9 { display: flex; }
}


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

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

.c_b7a65::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

.c_4ad0d[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.c_78f67 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.c_4ad0d[data-dark="light"]  .c_c6619 { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.c_4ad0d[data-dark="medium"] .c_c6619 { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.c_4ad0d[data-dark="dark"]   .c_c6619 { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

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

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

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

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

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

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

.c_43225:hover { opacity: .9; }

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

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

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

.c_5952d,
.c_a35a6 {
  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;
}

.c_5952d:hover,
.c_a35a6:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_db5f2 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_c6619 { padding-left: 58px; padding-right: 58px; }
  .c_5952d, .c_a35a6 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_b7a65::before { padding-top: 90%; }
  .c_c6619 { padding-left: 48px; padding-right: 48px; }
  .c_db5f2 { font-size: clamp(17px, 5vw, 26px); }
  .c_43225 { padding: 11px 28px; font-size: 14px; }
  .c_4752b { padding: 9px 20px; font-size: 13px; }
  .c_4fd44 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_5952d, .c_a35a6 { width: 34px; height: 34px; font-size: 20px; }
  .c_2de66 { padding: 0 8px; }
}


/* hero E */
/* Hero E — h1 + intro as bullet list (compact, scannable) */

.c_ce0e7 {}

.c_528cb {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_62f31 {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c_dbd2a {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: var(--text);
}

.c_dbd2a::marker {
  color: var(--primary);
}

@media (max-width: 600px) {
  .c_528cb { font-size: 20px; margin-bottom: 14px; }
  .c_62f31 { gap: 6px; }
}


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

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

.c_709f3 {
  min-width: 0;
}

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

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

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

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

.c_f35de:first-child {
  margin-top: 0;
}

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

@media (max-width: 640px) {
  .c_30322 { grid-template-columns: 1fr; }
  .c_aadc5 { max-width: none; }
}


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

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

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

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

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

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

.c_a7447 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
}

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

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

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


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

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

.c_ab72d::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;
}

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

.c_e0b0c {
  width: 100%;
  border-collapse: collapse;
}

.c_a4f40:first-child .c_fa294,
.c_a4f40:first-child .c_f47ff {
  padding-top: var(--space-3);
}

.c_a4f40 + .c_a4f40 .c_fa294,
.c_a4f40 + .c_a4f40 .c_f47ff {
  border-top: 1px solid var(--border);
}

.c_a4f40:hover .c_fa294,
.c_a4f40:hover .c_f47ff {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

@media (max-width: 600px) {
  .c_fa294, .c_f47ff { font-size: 13px; }
}

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


/* payments A */
/* Payments A — full multi-column table */

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

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

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

.c_9dddd {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.c_5a989 {
  border-bottom: 2px solid var(--primary);
}

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

.c_23975 + .c_23975 .c_17b8f {
  border-top: 1px solid var(--border);
}

.c_17b8f {
  padding: var(--space-2);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  vertical-align: middle;
}

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

@media (max-width: 600px) {
  .c_e618b, .c_17b8f { padding: var(--space-1); font-size: 12px; }
}

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


/* sticky-banner D */
/* Variant D — центрований банер-картка знизу
   HTML: bnRoot(relative, flex col) > bnClose(absolute) + bnBadge + bnTitle + bnSub + bnCta */

@keyframes bnCornerIn  { from { transform: translateX(-50%) translateY(80px); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnCornerOut { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(80px); opacity: 0 } }
@keyframes bnSlideUp   { from { transform: translateX(-50%) translateY(100%); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }

/* mobile-only keyframes (no translateX) */
@keyframes bnCornerInM  { from { transform: translateY(80px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnCornerOutM { from { transform: translateY(0); opacity: 1 } to { transform: translateY(80px); opacity: 0 } }

.c_5c71c {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(560px, calc(100vw - 32px));
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(0,0,0,.55);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.c_5c71c[hidden] { display: none; }

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

.c_36f36 {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--skin-r); line-height: 1;
}
.c_bfba3 {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.c_e2392 { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.c_65688 {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: filter .15s, transform .15s;
  letter-spacing: .01em; margin-top: 4px;
}
.c_65688:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .c_5c71c {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: none;
    border-radius: var(--radius-3) var(--radius-3) 0 0;
    padding: 20px 16px 24px;
  }
  .c_102f3 { top: 12px; right: 12px; }
  .c_bfba3 { font-size: 18px; padding-right: 36px; }
  .c_e2392   { font-size: 13px; }
  .c_65688   { padding: 12px 16px; font-size: 14px; }
}


/* registration F */
/* Registration F — split layout (big number left, content right) */

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

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

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

.c_19d48 {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.c_beb51 {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-2);
  align-items: start;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.c_beb51:last-child { border-bottom: none; }

.c_c579c {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-align: center;
  opacity: .65;
}

.c_4795b {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

@media (max-width: 480px) {
  .c_beb51 { grid-template-columns: 40px 1fr; }
  .c_c579c { font-size: 28px; }
}


/* login A */
/* Login A — prose article */

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

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

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

.c_1c61b {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.c_52bfe {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

.c_52bfe:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.c_f3e26 {
  margin: 0 0 var(--space-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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


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

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

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

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

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

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

.c_dbb5c {
  background: var(--bg);
}

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

.c_cd764 {
  border-bottom: 1px solid var(--border);
}

.c_cd764:last-child {
  border-bottom: none;
}

.c_cd764:nth-child(even) {
  background: var(--bg);
}

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

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

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

.c_2158e {
  color: var(--muted);
  font-size: 13px;
}

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


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

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

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

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

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

.c_3a6c3:hover {
  transform: scale(1.03);
}

.c_dae4f {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--border);
}

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

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

.c_7b852:hover {
  opacity: .85;
}

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


/* providers D */
/* Providers D — asymmetric grid: 2 featured large + dense rest */

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

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

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

.c_1129b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

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

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

.c_8d569:hover {
  border-color: rgba(var(--primary-rgb), .4);
  transform: translateY(-2px);
}

.c_bfcd8 {
  padding: var(--space-4) var(--space-3);
  border-color: rgba(var(--primary-rgb), .2);
}

.c_d807a {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.c_bfcd8 .c_d807a {
  height: 64px;
}

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

.c_bfcd8 .c_55ac2 {
  font-size: 13px;
  color: var(--fg);
}

@media (max-width: 480px) {
  .c_1129b { grid-template-columns: 1fr; }
}


/* loyalty C */
/* Loyalty C — timeline steps */

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

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

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

.c_a3f9f {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

.c_a3f9f::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border);
}

.c_c463c {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  position: relative;
}

.c_8fa8e {
  position: absolute;
  left: -32px;
  top: var(--space-2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.c_c6035 {
  margin: 0 0 4px;
  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;
}

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

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


/* promo A */
/* Promo A — full table */

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

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

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

.c_c1973 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.c_4484f {
  border-bottom: 2px solid var(--border);
}

.c_d890f {
  text-align: left;
  padding: var(--space-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.c_7fe31 {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.c_908fb + .c_908fb .c_7fe31 {
  border-top: 1px solid var(--border);
}

.c_24452 {
  font-weight: 700;
  color: var(--primary);
}

/* ── mobile card list (hidden on desktop) ── */
.c_ccab0 { display: none; }

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

.c_1e404 + .c_1e404 { margin-top: var(--space-2); }

.c_f447c {
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
  font-size: 14px;
}

.c_fedf6 {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 6px 0 2px;
}

.c_78931 {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 580px) {
  .c_c1973 { display: none; }
  .c_ccab0 { display: block; }
}


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

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

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

.c_70107 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

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

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

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


/* security B */
/* Security B — compact inline banner */

.c_42c9a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(var(--primary-rgb), .06);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-2);
}

.c_c56cb {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bg);
  background: var(--primary);
  border-radius: 999px;
  line-height: 1.4;
}

.c_b15ff {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_4253f {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


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

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

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

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

.c_aaf98 {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.c_bc2cf {
  border-bottom: 2px solid var(--primary);
}

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

.c_c9707 + .c_c9707 .c_ff4e4 {
  border-top: 1px solid var(--border);
}

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

.c_acd97 {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.c_6dd62 {
  font-size: 13px;
  color: var(--muted);
}


/* support F */
/* Support F — prose paragraph */

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

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

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


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

.c_85e55 > * {
  position: relative;
}

.c_1cba6 {
  margin-bottom: var(--space-4);
}

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

.c_1a67c {
  margin: 0;
  color: var(--muted);
}

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

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

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

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


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

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

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

.c_5a826 {
  font-size: 12px;
  color: var(--muted);
}

.c_599bd {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

.c_2682c:hover {
  background: rgba(var(--primary-rgb), .08);
}


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.c_2acfb {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

.c_4173f {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.c_4173f > div:first-child {
  flex: 1;
  min-width: 0;
}

.c_e5a69 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.c_4ceb9 {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.c_1ee50 {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

.c_83945:hover { color: var(--primary); }

.c_b1bb2 {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.c_ef394 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .c_4173f { flex-direction: column; }
  .c_1ee50 { flex-direction: row; flex-wrap: wrap; }
}

