:root {
  --bg-main: #F8F2EF;
  --bg-soft: #E9D7D0;
  --bg-card: #D0B1A5;
  --text-main: #2C1717;
  --text-soft: #5A2E2E;
  --text-muted: #8A5F5B;
  --accent: #8F2D2D;
  --accent-contrast: #FFF8F6;

  --font: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --tr-body: -0.024em;

  --radius-card: 16px;
  --radius-btn: 6px;
  --radius-icon: 6px;
  --radius-pill: 99px;

  --shadow-glow: rgba(0, 0, 0, 0.7) 0px 20px 80px 0px;

  --page-max: 1200px;
  --header-h: 80px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-main) 42%, var(--bg-main) 100%);
  color: var(--text-main);
  font-family: var(--font);
  letter-spacing: var(--tr-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 245, 226, 0.02), rgba(255, 245, 226, 0.02)),
    radial-gradient(circle at 20% 30%, rgba(255, 221, 170, 0.035), transparent 18%),
    radial-gradient(circle at 80% 60%, rgba(255, 221, 170, 0.025), transparent 20%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; letter-spacing: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

::selection { background: var(--accent); color: var(--accent-contrast); }

/* Thin scrollbars to match terminal feel */
* { scrollbar-width: thin; scrollbar-color: #2a2a2a transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #232323; border-radius: 99px; border: 3px solid var(--bg-main); }
::-webkit-scrollbar-thumb:hover { background: #2f2f2f; }

/* ============================================================
   App shell
   ============================================================ */
#root { min-height: 100vh; }

.app {
  min-height: 100vh;
  overflow-x: clip;
}

.brand-logo {
  width: auto;
  max-width: 100%;
  display: block;
}

/* ---------- Main column ---------- */
.main {
  min-height: 100vh;
  padding-top: var(--header-h);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  background: color-mix(in srgb, var(--bg-main) 72%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 154, 82, 0.12);
  box-shadow: inset 0 -1px 0 rgba(255, 232, 199, 0.03);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}
.header__brand-m,
.header__spacer,
.header .pill,
.header .btn-cta,
.header__burger {
  position: relative;
  z-index: 2;
}
.header__brand-m {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 15px;
}
.header__brand-m .brand-logo { height: 76px; }
.header__brand-m b { color: var(--accent); }
.header__nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 28px;
  z-index: 1;
}
.header__nav a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: color .16s; }
.header__nav a:hover { color: var(--text-main); }

.header__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 82, 0.16);
  background: transparent;
  color: var(--text-main);
  place-items: center;
  flex: 0 0 auto;
}

.header__spacer { flex: 1; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232, 213, 184, 0.34);
  color: var(--text-main);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  transition: background .16s, border-color .16s, transform .12s;
}
.pill:hover { background: rgba(255, 232, 199, 0.06); }
.pill:active { transform: translateY(1px); }
.pill--ghost { border-color: rgba(216, 154, 82, 0.14); color: var(--text-soft); }
.pill--ghost:hover { border-color: rgba(232, 213, 184, 0.34); color: var(--text-main); }

.header .pill,
.header .btn-cta { height: 46px; padding: 0 24px; font-size: 15px; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 231, 194, 0.16);
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: filter .16s, transform .12s;
  box-shadow: inset 0 1px 0 rgba(255, 244, 226, 0.28), 0 12px 24px rgba(0, 0, 0, 0.2);
}
.btn-cta:hover { filter: brightness(1.06); box-shadow: inset 0 1px 0 rgba(255, 244, 226, 0.32), 0 16px 28px rgba(0, 0, 0, 0.26); }
.btn-cta:active { transform: translateY(1px); }
.btn-cta--lg { height: 52px; padding: 0 28px; font-size: 16px; border-radius: var(--radius-btn); }

/* ============================================================
   Content layout
   ============================================================ */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 28px;
}

section { scroll-margin-top: 80px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.h2 {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: var(--tr-body);
  margin: 0;
  color: var(--text-soft);
}
.h2--sm { font-size: clamp(24px, 3vw, 34px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 40px 0 12px; }

.hero .h1-seo {
  margin: 0 0 18px;
  font-family: var(--font);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: var(--tr-body);
  line-height: 1.05;
  text-align: center;
}

.hero-intro {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(216, 154, 82, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-card), var(--bg-soft)),
    var(--bg-soft);
  border: 1px solid rgba(216, 154, 82, 0.15);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
 .hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 213, 184, 0.08);
  border-radius: 12px;
  pointer-events: none;
	}

.hero-banner {
  position: relative;
  min-height: 420px;
}
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ============================================================
   GAMES carousel
   ============================================================ */
.games-block { margin-top: 64px; }
.carousel-ctrls { display: flex; gap: 10px; }
.c-arrow {
  width: 40px; height: 40px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid rgba(216, 154, 82, 0.18);
  color: var(--text-soft);
  display: grid; place-items: center;
  transition: border-color .16s, color .16s, opacity .16s;
}
.c-arrow:hover:not(:disabled) { border-color: rgba(232, 213, 184, 0.34); color: var(--text-main); background: rgba(216, 154, 82, 0.08); }
.c-arrow:disabled { opacity: .35; cursor: default; }

.track-mask {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.track {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }

.game-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-thumb {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
  border: 1px solid rgba(216, 154, 82, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 232, 199, 0.04);
}
.game-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-thumb::part(frame) { border-radius: 0; }
.game-over {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity .18s;
  pointer-events: none;
}
.game-card:hover .game-over { opacity: 1; pointer-events: auto; }
.game-card:hover .game-thumb { border-color: rgba(216, 154, 82, 0.32); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22); }
.game-play {
  width: 100%;
  height: 40px;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
  font-size: 14px;
  border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.live-chip {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 9px;
  border-radius: var(--radius-btn);
  border: 1px solid #c36b47;
  color: #f0c2a3;
  background: rgba(27,19,14,.72);
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.live-chip .ld { width: 6px; height: 6px; border-radius: 50%; background: #c36b47; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.game-meta .gname { font-size: 15px; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.game-meta .gprov { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

.payments-block {
  position: relative;
  margin-top: 52px;
  padding: 28px;
  border-radius: calc(var(--radius-card) + 4px);
  background:
    radial-gradient(circle at top right, rgba(216, 154, 82, 0.11), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid rgba(216, 154, 82, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.payments-block::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 213, 184, 0.06);
  border-radius: calc(var(--radius-card) - 2px);
  pointer-events: none;
}
.payments-block .section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.payments-block .section-head > div {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.payments-block .section-head > div::after {
  content: "";
  width: 76px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(216, 154, 82, 0));
  box-shadow: 0 0 18px rgba(216, 154, 82, 0.3);
}
.payments-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 20px;
}
.payment-card { min-width: 0; }
.payment-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 20px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-card) 88%, white 12%), var(--bg-soft)),
    var(--bg-card);
  border: 1px solid rgba(216, 154, 82, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.payment-card:hover .payment-logo-box {
  transform: translateY(-2px);
  border-color: rgba(232, 213, 184, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.22);
  background:
    radial-gradient(circle at top center, rgba(216, 154, 82, 0.08), transparent 52%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-card) 78%, white 22%), color-mix(in srgb, var(--bg-soft) 88%, white 12%));
}
.payment-logo {
  max-width: 200px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.payment-logo--wide { max-width: 224px; }
.payment-logo--tall { max-height: 82px; }
.payment-name {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.25;
  transition: color .16s ease;
}
.payment-card:hover .payment-name { color: var(--text-main); }
.provider-logo-box {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-card) 84%, white 16%), var(--bg-soft));
}
.provider-logo {
  max-width: 210px;
  max-height: 78px;
}
.provider-logo--wide { max-width: 230px; }
.provider-logo--tall { max-height: 88px; }

/* ============================================================
   SEO content + FAQ
   ============================================================ */
.seo-block { margin-top: 88px; }
.seo-grid { display: block; }

.seo-body { min-width: 0; }
.page-content { min-width: 0; }
.page-content > *:first-child { margin-top: 0; }
.page-content > h2 {
  padding: 8px 0 0;
  margin: 34px 0 16px;
  border-top: 1px solid rgba(216, 154, 82, 0.08);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: var(--tr-body);
  color: var(--text-soft);
}
.page-content > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 22px 0 10px;
  color: var(--text-soft);
}
.page-content p,
.page-content li {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}
.page-content p { margin: 0 0 14px; }
.page-content strong { color: var(--text-main); font-weight: 600; }
.page-content ul,
.page-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.page-content li + li { margin-top: 8px; }
.page-content > .btn-cta,
.page-content .final-cta .btn-cta {
  margin-top: 12px;
}
.page-content table,
.quick-facts table {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0;
  border: 1px solid rgba(216, 154, 82, 0.22);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-card) 88%, white 12%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.16);
}

.page-content table > thead,
.page-content table > tbody,
.quick-facts table > thead,
.quick-facts table > tbody {
  display: table;
  width: 100%;
  min-width: 560px;
  table-layout: auto;
}

.page-content th,
.page-content td,
.quick-facts th,
.quick-facts td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
}

.page-content thead th,
.quick-facts thead th {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  background: color-mix(in srgb, var(--accent) 12%, var(--bg-card) 88%);
  border-bottom: 1px solid rgba(216, 154, 82, 0.22);
}

.page-content tbody td,
.quick-facts tbody td {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  background: transparent;
  border-top: 1px solid rgba(216, 154, 82, 0.12);
}

.page-content tbody tr:first-child td,
.quick-facts tbody tr:first-child td {
  border-top: none;
}

.page-content th + th,
.page-content td + td,
.quick-facts th + th,
.quick-facts td + td {
  border-left: 1px solid rgba(216, 154, 82, 0.10);
}

.page-content tbody td:first-child,
.page-content thead th:first-child,
.quick-facts tbody td:first-child {
  width: 34%;
  color: var(--text-main);
  font-weight: 600;
}

.quick-facts thead th:first-child {
  width: 34%;
}
.page-content .final-cta {
  margin-top: 42px;
  padding: 28px;
  border-radius: calc(var(--radius-card) + 2px);
  background:
    radial-gradient(circle at top right, rgba(216, 154, 82, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-card), var(--bg-soft)),
    var(--bg-soft);
  border: 1px solid rgba(216, 154, 82, 0.14);
  box-shadow: var(--shadow-glow);
}
.page-content .final-cta h2 {
  margin: 0 0 12px;
  padding: 0;
  border-top: none;
}
.page-updated {
  position: relative;
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 22%),
    color-mix(in srgb, var(--bg-card) 76%, var(--bg-main) 24%);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--text-muted) 82%);
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--text-main) 8%, transparent),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   Footer
   ============================================================ */
.footer { margin-top: 96px; border-top: 1px solid rgba(216, 154, 82, 0.12); background: linear-gradient(180deg, var(--bg-soft), var(--bg-main)); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--text-muted); font-size: 14px; }
.footer ul a:hover { color: var(--text-main); }
.foot-brand .bword { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: .02em; margin-bottom: 14px; font-family: var(--font); }
.foot-brand .bword .brand-logo { height: 60px; }
.foot-brand .bword b { color: var(--accent); }
.foot-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 36ch; margin: 0 0 18px; }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(216, 154, 82, 0.16); background: var(--bg-card); display: grid; place-items: center; color: var(--text-soft); transition: color .15s, border-color .15s, background .15s; }
.social-btn:hover { color: var(--text-main); border-color: rgba(232, 213, 184, 0.34); background: rgba(216, 154, 82, 0.08); }
.footer-bottom {
  border-top: 1px solid rgba(216, 154, 82, 0.08);
  padding: 22px 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: var(--text-muted); font-size: 12.5px; line-height: 1.6; max-width: 72ch; }
.age-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: 12px; font-weight: 600; }
.age-circle { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(232, 213, 184, 0.18); display: grid; place-items: center; font-size: 11px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .payments-block { padding: 24px; }
  .header__brand-m .brand-logo { height: 48px; }
  .header__brand-m { display: flex; }
  .header__burger { display: grid; }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 0 18px;
    background: color-mix(in srgb, var(--bg-main) 96%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 154, 82, 0.12);
    transition: max-height .26s ease, opacity .2s ease;
  }
  .header__nav.open { max-height: 280px; opacity: 1; pointer-events: auto; padding: 8px 18px 18px; }
  .header__nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(216, 154, 82, 0.08); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .hero-banner { min-height: 280px; }
  .hero-banner img { object-position: 76% center; }
  .footer { margin-top: 72px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 32px 0 24px;
  }
  .footer-inner > div {
    padding: 18px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--bg-card) 72%, var(--bg-main) 28%);
    border: 1px solid color-mix(in srgb, var(--text-muted) 20%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text-main) 7%, transparent);
  }
  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
  .footer h4 {
    margin-bottom: 12px;
    color: var(--text-soft);
  }
  .footer ul {
    gap: 10px;
  }
  .footer ul a {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.35;
  }
  .foot-brand p {
    max-width: none;
    margin-bottom: 14px;
  }
  .social-row {
    flex-wrap: wrap;
  }
  .footer-bottom {
    padding: 18px 0 28px;
    gap: 12px;
  }
  .footer-bottom p,
  .age-badge {
    color: var(--text-soft);
  }
  .wrap { padding: 0 18px; }
  .header { padding: 0 16px; }
  .header {
    gap: 10px;
  }
  .header__brand-m {
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.015em;
    min-width: 0;
    flex: 1;
  }
  .header .pill--ghost.login-text,
  .header .btn-cta {
    height: 42px;
    padding: 0 18px;
    font-size: 14px;
    flex: 0 0 auto;
  }
}

@media (max-width: 520px) {
  .payments-block {
    margin-top: 40px;
    padding: 18px 16px;
  }
  .payments-block::before { inset: 10px; }
  .payments-block .section-head {
    margin-bottom: 18px;
  }
  .payments-block .section-head > div {
    gap: 8px;
  }
  .payments-block .section-head > div::after {
    width: 64px;
  }
  .payments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .payment-logo-box {
    min-height: 104px;
    padding: 14px;
    border-radius: 14px;
  }
  .payment-logo {
    max-width: 132px;
    max-height: 44px;
  }
  .payment-logo--wide { max-width: 144px; }
  .payment-logo--tall { max-height: 52px; }
  .provider-logo {
    max-width: 138px;
    max-height: 48px;
  }
  .provider-logo--wide { max-width: 150px; }
  .provider-logo--tall { max-height: 56px; }
  .payment-name {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.3;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 26px 0 22px;
  }
  .footer-inner > div {
    padding: 16px;
    border-radius: 12px;
  }
  .footer-inner > :first-child,
  .footer-inner > :last-child {
    grid-column: 1 / -1;
  }
  .footer h4 {
    font-size: 11px;
    letter-spacing: .14em;
  }
  .footer ul a {
    font-size: 14px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0 24px;
  }
  .header {
    padding: 0 12px;
    gap: 8px;
  }
  .header__brand-m {
    font-size: 12px;
    letter-spacing: 0.01em;
    overflow: hidden;
    white-space: nowrap;
  }
  .header .pill--ghost.login-text,
  .header .btn-cta {
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .header__brand-m {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
  .header .pill--ghost.login-text,
  .header .btn-cta {
    padding: 0 13px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .payments-block {
    padding: 16px 14px;
  }
  .payments-grid {
    gap: 14px 10px;
  }
  .payment-logo-box {
    min-height: 92px;
    padding: 12px;
  }
  .payment-logo {
    max-width: 116px;
    max-height: 38px;
  }
  .payment-logo--wide { max-width: 126px; }
  .payment-logo--tall { max-height: 46px; }
  .provider-logo {
    max-width: 122px;
    max-height: 42px;
  }
  .provider-logo--wide { max-width: 132px; }
  .provider-logo--tall { max-height: 50px; }
  .payment-name {
    font-size: 12px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner > :first-child,
  .footer-inner > :last-child {
    grid-column: auto;
  }
  .header {
    gap: 6px;
  }
  .header__brand-m {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
  .header .pill--ghost.login-text,
  .header .btn-cta {
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
}