:root {
  --bg: #020b1b;
  --bg-soft: #061633;
  --bg-panel: rgba(6, 21, 48, 0.86);
  --bg-panel-strong: rgba(2, 12, 29, 0.94);
  --text: #f5fbff;
  --text-muted: #a9bdd8;
  --blue: #0087ff;
  --blue-2: #00c2ff;
  --gold: #ffcf23;
  --gold-2: #ff9d00;
  --green: #48e56f;
  --red: #ff5a6f;
  --border: rgba(70, 178, 255, 0.35);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1120px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 6%, rgba(0, 135, 255, 0.35), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 207, 35, 0.13), transparent 28%),
    linear-gradient(180deg, #031128 0%, var(--bg) 38%, #010714 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; height: auto; }
button, input, select { font: inherit; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 76px 0; position: relative; }
.text-center { text-align: center; }

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, #0873e6 0%, #13b5ff 52%, #0475e9 100%);
  color: white;
  box-shadow: 0 10px 26px rgba(0, 93, 255, 0.28);
}
.promo-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: .01em;
  font-size: 14px;
}
.promo-bar strong { color: var(--gold); text-shadow: 0 1px 0 rgba(0,0,0,.25); }
.promo-bar__btn {
  background: var(--gold);
  color: #071326;
  border: 0;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(138, 85, 0, .28), 0 12px 20px rgba(255, 207, 35, .26);
}
.promo-bar__btn:hover,
.promo-bar__btn:focus-visible {
  background: var(--gold);
  color: #071326;
  box-shadow: 0 6px 0 rgba(138, 85, 0, .28), 0 12px 20px rgba(255, 207, 35, .26);
  transform: none;
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 55;
  backdrop-filter: blur(16px);
  background: rgba(2, 11, 27, .82);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}
.logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(48vw, 300px);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,207,35,.14));
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, #ffdd42, #ffb700 48%, #ff9500);
  color: #061326;
  box-shadow: 0 9px 0 #9c5c00, 0 18px 38px rgba(255, 184, 0, .26);
}
.btn-primary:hover { color: #061326; box-shadow: 0 7px 0 #9c5c00, 0 20px 46px rgba(255, 184, 0, .36); }
.btn-secondary {
  background: linear-gradient(180deg, #0c8aff, #0061e5);
  color: #fff;
  box-shadow: 0 9px 0 #003b9d, 0 20px 40px rgba(0, 126, 255, .25);
}
.btn-ghost {
  background: rgba(6, 21, 48, .78);
  color: #fff;
  border-color: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.btn-small { min-height: 38px; padding: 9px 15px; font-size: 13px; }
.btn-full { width: 100%; }
.btn[disabled] { opacity: .62; cursor: not-allowed; transform: none; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero::before {
  background:
    linear-gradient(180deg, rgba(2,11,27,.08), rgba(2,11,27,.82) 70%, rgba(2,11,27,.98)),
    url('../img/hero.webp') center top / contain no-repeat;
}
.hero::after {
  background: url('../img/hero-glow.webp') center top / contain no-repeat;
  opacity: .55;
  mix-blend-mode: screen;
}
.hero__inner { padding: 80px 0 56px; display: grid; gap: 42px; align-items: center; }
.hero__copy { text-align: center; max-width: 850px; margin-inline: auto; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 207, 35, .42);
  color: #fff8d1;
  background: rgba(255, 207, 35, .08);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero h1,
.display-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: .01em;
  margin: 18px 0 16px;
  font-size: clamp(56px, 11vw, 140px);
  text-shadow: 0 8px 0 rgba(0,0,0,.34), 0 0 46px rgba(0, 194, 255, .22);
}
.hero h1 span,
.display-title span { color: var(--gold); }
.hero p { color: #d4e6ff; max-width: 700px; margin: 0 auto 28px; font-size: clamp(16px, 2vw, 20px); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  color: #c4d8f1;
  font-size: 13px;
}
.trust-row span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0,0,0,.18);
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: -150px;
  position: relative;
  z-index: 3;
}
.social-card {
  background: #f8fbff;
  color: #071326;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .34);
  transform: rotate(var(--tilt, 0deg));
}
.social-card:nth-child(1) { --tilt: -3deg; }
.social-card:nth-child(2) { --tilt: 1.5deg; }
.social-card:nth-child(3) { --tilt: 3deg; }
.social-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef6ff, #dfeafa);
}
.social-card img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.social-card__bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 4px 4px; font-weight: 900; }
.social-card__likes {
  color: #071326;
  background: #ffcf23;
  border: 1px solid rgba(7, 19, 38, .18);
  border-radius: 999px;
  padding: 4px 8px;
  box-shadow: 0 2px 0 rgba(7, 19, 38, .18);
}
.social-card__caption { color: #23314a; font-size: 13px; padding: 0 4px 8px; }

.value-card {
  background: linear-gradient(180deg, rgba(4, 25, 60, .92), rgba(1, 10, 24, .92));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 5vw, 54px);
  box-shadow: var(--shadow), inset 0 0 46px rgba(0, 194, 255, .08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 0, rgba(0, 194, 255, .28), transparent 48%);
  pointer-events: none;
}
.kicker { color: var(--gold); font-size: 15px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 10px 0 12px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .9;
  text-shadow: 0 6px 0 rgba(0,0,0,.28);
}
.section-title span { color: var(--gold); }
.section-lead { color: var(--text-muted); font-size: 18px; line-height: 1.7; max-width: 760px; margin: 0 auto 24px; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}
.game-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 44px rgba(0,0,0,.3);
  background: radial-gradient(circle at 50% 18%, rgba(0,194,255,.13), transparent 42%), #071326;
  transition: transform .2s ease, box-shadow .2s ease;
}
.game-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 28px 58px rgba(0,0,0,.44); }
.game-card.featured { transform: scale(1.08); border-color: rgba(255,207,35,.7); z-index: 2; }
.game-card.featured:hover { transform: translateY(-8px) scale(1.1); }
.game-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 8px 8px 42px;
}
.game-card__label {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  padding: 8px 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
}
.providers {
  display: grid;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.provider {
  display: grid;
  place-items: center;
  min-height: 94px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.provider img { width: 54px; height: 54px; object-fit: contain; opacity: .93; }
.provider span { margin-top: 8px; color: #d9e8ff; font-size: 12px; font-weight: 850; text-align: center; }

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 64px);
  background:
    radial-gradient(circle at 80% 26%, rgba(0,194,255,.22), transparent 34%),
    linear-gradient(180deg, rgba(2,11,27,.18), rgba(2,11,27,.98));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/cta-players.webp') right bottom / contain no-repeat;
  opacity: .92;
  pointer-events: none;
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,11,27,.98) 0%, rgba(2,11,27,.82) 42%, rgba(2,11,27,.18) 100%);
  pointer-events: none;
}
.cta-panel__content { max-width: 560px; position: relative; z-index: 2; }

.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 32px auto 0; }
details {
  background: rgba(3, 18, 43, .82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-weight: 900; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 22px 20px; color: var(--text-muted); line-height: 1.7; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #010713;
  padding: 40px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; align-items: start; }
.footer-logo img { width: 230px; max-width: 100%; height: auto; }
.footer-title { font-weight: 950; color: #fff; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; color: var(--text-muted); }
.disclaimer { margin-top: 26px; color: #8ba4c8; font-size: 12px; line-height: 1.7; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }
.age-badge { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; font-weight: 950; margin-bottom: 10px; }

.page-hero {
  padding: 82px 0 46px;
  background: radial-gradient(circle at 50% 0, rgba(0,135,255,.22), transparent 48%);
}
.page-hero h1 { margin: 0 0 14px; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(46px, 8vw, 86px); line-height: .9; }
.page-hero p { color: var(--text-muted); line-height: 1.7; max-width: 720px; }
.legal-content, .auth-card, .dashboard-card, .checkout-card {
  background: rgba(4, 19, 45, .82);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 42px);
}
.legal-content h2 { margin-top: 30px; color: #fff; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.75; }
.legal-content ul { padding-left: 22px; }

.auth-wrap {
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  padding: 60px 0 80px;
}
.auth-card { max-width: 520px; margin-inline: auto; width: 100%; }
.form-offer {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(7,48,120,.94), rgba(6,15,44,.96));
  border: 1px solid rgba(0, 194, 255, .32);
  margin-bottom: 22px;
}
.form-offer__art {
  min-height: 72px;
  border-radius: 14px;
  background: url('../img/hero-glow.webp') center / contain no-repeat;
  border: 1px solid rgba(255,255,255,.1);
}
.form-offer h2 { margin: 0 0 6px; font-size: 18px; }
.form-offer p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.progress { display: flex; align-items: center; gap: 8px; margin: 10px 0 24px; }
.progress__dot {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22);
}
.progress__dot.active, .progress__dot.done { background: linear-gradient(180deg, var(--blue-2), var(--blue)); box-shadow: 0 0 18px rgba(0,194,255,.52); }
.progress__dot.gift { width: 30px; height: 30px; display: grid; place-items: center; background: rgba(255,207,35,.16); }
.progress__bar { flex: 1; height: 2px; background: rgba(255,255,255,.12); }
.step-label { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-weight: 850; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.step-pill { background: var(--blue); color: #fff; padding: 4px 8px; border-radius: 999px; font-size: 11px; }
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; color: #d9e8ff; font-weight: 800; }
.input-wrap { position: relative; }
.input, select {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(124, 185, 255, .25);
  background: rgba(2, 11, 27, .72);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}
select { appearance: auto; }
.input:focus, select:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(0, 194, 255, .13); }
.input.error, select.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255, 90, 111, .12); }
.error-msg { min-height: 18px; margin-top: 6px; color: #ff98a8; font-size: 12px; }
.eye-btn {
  position: absolute;
  right: 8px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border: 0; border-radius: 9px;
  background: rgba(255,255,255,.08); color: #dceaff; cursor: pointer;
}
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.checkbox input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.checkbox a { color: #76c9ff; text-decoration: underline; }
.phone-row { display: grid; grid-template-columns: 96px 1fr; gap: 10px; }
.phone-prefix {
  min-height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid rgba(124, 185, 255, .25);
  background: rgba(2, 11, 27, .72);
  font-weight: 900;
}
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.back-btn { min-width: 48px; padding: 0; }
.auth-meta { margin-top: 16px; text-align: center; color: var(--text-muted); font-size: 13px; }
.status-box { margin-top: 16px; border-radius: 14px; padding: 14px; background: rgba(255,255,255,.06); color: var(--text-muted); display: none; }
.status-box.show { display: block; }
.status-box.error { color: #ffd4dc; background: rgba(255, 90, 111, .12); border: 1px solid rgba(255, 90, 111, .3); }
.status-box.success { color: #d8ffe2; background: rgba(72, 229, 111, .12); border: 1px solid rgba(72, 229, 111, .3); }

.offer-screen { display: none; }
.offer-screen.show { display: block; }
.offer-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 70% 12%, rgba(255,207,35,.22), transparent 36%), rgba(4, 19, 45, .92);
  border: 1px solid rgba(255,207,35,.35);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
}
.offer-price { font-family: var(--font-display); font-size: clamp(58px, 10vw, 112px); line-height: .9; color: var(--gold); margin: 12px 0; text-shadow: 0 5px 0 rgba(0,0,0,.28); }
.offer-card ul { list-style: none; padding: 0; margin: 20px auto 28px; max-width: 540px; display: grid; gap: 10px; color: #d8e7ff; }
.offer-card li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 950; }

.dashboard-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: start; }
.balance-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 18px; }
.balance-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 18px; }
.balance-box strong { display: block; color: var(--gold); font-size: 28px; margin-top: 6px; }

.checkout-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 18px; align-items: start; }
.package-card { border: 1px solid rgba(255,207,35,.38); background: rgba(255,207,35,.08); border-radius: 20px; padding: 22px; }
.package-card strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 54px; line-height: .9; margin: 12px 0; }
.secure-note { color: var(--text-muted); font-size: 13px; line-height: 1.6; }


/* Final no-crop/layout audit rules for Cloudflare Pages build. */
.logo, .footer-logo, .social-card, .game-card, .provider, .cta-panel, .auth-card, .legal-content, .dashboard-card, .checkout-card { min-width: 0; }
.social-card__media, .game-card, .provider { contain: layout paint; }
.social-card img, .game-card img, .provider img, .logo img, .footer-logo img { object-position: center center; }
.game-card__label { pointer-events: none; }

@media (max-width: 940px) {
  .social-cards, .games-grid, .providers, .footer-grid, .dashboard-grid, .checkout-grid { grid-template-columns: 1fr; }
  .social-cards { margin-top: -90px; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .providers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-card.featured { transform: none; }
  .header-inner { min-height: 66px; }
  .logo img { height: 50px; max-width: min(54vw, 260px); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--container)); }
  .promo-bar__inner { font-size: 12px; gap: 8px; min-height: 44px; text-align: center; }
  .promo-bar__btn { display: none; }
  .site-header { top: 44px; }
  .nav-actions .btn-ghost { display: none; }
  .header-inner { min-height: 62px; gap: 10px; }
  .logo img { height: 42px; max-width: 58vw; }
  .btn { min-height: 42px; padding: 10px 15px; font-size: 12px; }
  .hero { min-height: 660px; }
  .hero::before { background-size: 100% auto; background-position: center 18px; }
  .hero::after { background-size: 100% auto; background-position: center 18px; }
  .hero__inner { padding: 54px 0 42px; }
  .hero h1, .display-title { font-size: clamp(48px, 17vw, 78px); }
  .section { padding: 54px 0; }
  .social-cards { grid-template-columns: 1fr; margin-top: -64px; }
  .social-card { transform: none; }
  .games-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .game-card img { padding: 7px 7px 38px; }
  .cta-panel { min-height: 620px; align-items: start; }
  .cta-panel::before { background-size: 100% auto; background-position: center bottom; opacity: .9; }
  .cta-panel::after { background: linear-gradient(180deg, rgba(2,11,27,.98) 0%, rgba(2,11,27,.78) 45%, rgba(2,11,27,.16) 100%); }
  .form-row, .phone-row, .form-offer, .balance-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 20px; border-radius: 22px; }
  .form-actions { gap: 10px; }
  .form-actions .btn-primary { flex: 1; }
  .footer-grid { gap: 22px; }
}

/* Security honeypot field: hidden from users, readable by bots. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Final account/auth/PageSpeed fixes. */
.social-card__bar,
.social-card__bar span,
.social-card__caption {
  color: #071326;
}
.social-card__likes {
  color: #000000 !important;
  background: #ffffff !important;
  border: 2px solid #000000 !important;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: none !important;
  box-shadow: none !important;
  min-width: 66px;
  text-align: center;
}
.dashboard-actions {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.dashboard-card--full {
  grid-column: 1 / -1;
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
}
.account-actions {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.dashboard-card .btn-full + .btn-full,
.checkout-card .btn-full + .btn-full {
  margin-top: 0;
}
.dashboard-card h2,
.checkout-card h2 {
  margin-top: 0;
}
.dashboard-grid .section-lead,
.checkout-grid .section-lead {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 640px) {
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn-small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .dashboard-actions,
  .account-actions {
    gap: 14px;
  }
}
