/* ==========================================================================
   Tradle — design tokens & base styles
   ========================================================================== */

:root {
  --bg: #0a0e13;
  --surface: #12181f;
  --surface-alt: #182029;
  --surface-raised: #1c2530;
  --border: #263140;
  --text: #f4f7fa;
  --text-muted: #93a1b0;
  --text-faint: #5f6c7a;

  --accent: #1fe08a;
  --accent-dark: #0fb56d;
  --accent-soft: rgba(31, 224, 138, 0.14);
  --gold: #f5b942;
  --gold-soft: rgba(245, 185, 66, 0.14);
  --danger: #ff5f7a;
  --danger-soft: rgba(255, 95, 122, 0.12);

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-md: 0 12px 30px -12px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(31, 224, 138, 0.25), 0 0 40px rgba(31, 224, 138, 0.15);

  --container: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(31, 224, 138, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center { margin-inline: auto; text-align: center; }

.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #04120b;
  box-shadow: 0 10px 24px -8px rgba(31, 224, 138, 0.55);
}
.btn-primary:hover { box-shadow: 0 14px 32px -8px rgba(31, 224, 138, 0.7); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }

.btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------- Badge ---------- */

.badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold);
  border: 1px solid rgba(245, 185, 66, 0.4);
  background: var(--gold-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 19, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 14, 19, 0.9);
  box-shadow: var(--shadow-md);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid;
  place-items: center;
  color: #06130c;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  align-items: center; justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }

.user-chip {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: var(--radius-pill);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
}
.user-chip .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid; place-items: center;
  color: #06130c;
  font-weight: 800;
  font-size: 12px;
}
.user-chip.is-visible { display: inline-flex; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(31,224,138,0.16), transparent 60%),
    linear-gradient(180deg, rgba(8,11,15,0.55) 0%, rgba(8,11,15,0.82) 55%, var(--bg) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55;
  filter: blur(.3px);
  animation: floatUp linear infinite;
}

.hero-content {
  max-width: 660px;
}

.hero-content .eyebrow { margin-bottom: 22px; }

.hero-content h1 {
  font-size: clamp(36px, 5.4vw, 62px);
  margin-bottom: 20px;
}

.hero-content h1 .accent-word {
  color: var(--accent);
}

.hero-lede {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}
.hero-stats .stat-label {
  font-size: 12.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-cue .dot-track {
  width: 2px; height: 34px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-cue .dot-track::after {
  content: '';
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: linear-gradient(var(--accent), transparent);
  animation: cueDrop 1.8s ease-in-out infinite;
}

/* ==========================================================================
   Sports grid
   ========================================================================== */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sport-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}
.sport-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  filter: saturate(.9) brightness(.85);
}
.sport-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,9,13,0.92) 100%);
}
.sport-card:hover img { transform: scale(1.12); filter: saturate(1.05) brightness(.95); }

.sport-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  z-index: 2;
}
.sport-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.sport-card-body h3 { font-size: 19px; margin-bottom: 4px; }
.sport-card-body p { font-size: 13px; margin: 0; color: var(--text-muted); }

/* ==========================================================================
   Features
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31,224,138,0.4);
  background: var(--surface-alt);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin: 0; }

/* ---------- Split feature (in-play) ---------- */

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-feature img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split-media { position: relative; }
.split-media::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(31,224,138,0.35);
  border-radius: calc(var(--radius-lg) + 14px);
  z-index: -1;
}
.live-pill {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,9,13,0.75);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(255,95,122,.6);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 14.5px; }
.check-list svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 1px; }

/* ==========================================================================
   Stats / crowd band
   ========================================================================== */

.stat-band {
  position: relative;
  padding: 110px 0;
  isolation: isolate;
  overflow: hidden;
}
.stat-band-media {
  position: absolute; inset: 0; z-index: -2;
}
.stat-band-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.8) brightness(.55);
}
.stat-band-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10,14,19,.55) 30%, rgba(10,14,19,.55) 70%, var(--bg) 100%);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  background: rgba(18, 24, 31, 0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 34px 20px;
  backdrop-filter: blur(6px);
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--accent);
}
.stat-item .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ==========================================================================
   Payments
   ========================================================================== */

.payments-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
}
.payments-copy { max-width: 360px; }
.payments-copy h3 { font-size: 20px; margin-bottom: 8px; }
.payments-copy p { margin: 0; font-size: 14px; }
.payments-strip img { max-width: 420px; width: 100%; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 72px 48px;
  text-align: center;
}
.cta-band-media { position: absolute; inset: 0; z-index: -2; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(.9); }
.cta-band-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,224,138,0.28), rgba(10,14,19,0.85));
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 620px; margin-inline: auto 12px; }
.cta-band p { max-width: 520px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 28px; margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: all .2s ease;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col address {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--accent); }

.footer-legal-block { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.footer-legal-block strong { color: var(--text); }

.responsible-gambling {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.rg-item { display: flex; gap: 14px; }
.rg-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid; place-items: center;
}
.rg-icon svg { width: 20px; height: 20px; }
.rg-item h5 { margin: 0 0 4px; font-size: 14px; color: var(--text); }
.rg-item p { margin: 0; font-size: 13px; }
.rg-item a { color: var(--gold); font-weight: 700; }
.rg-item a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-bottom .badge-18 { margin-left: 4px; }

/* ==========================================================================
   Modals (auth)
   ========================================================================== */

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6, 9, 13, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.modal {
  width: 100%;
  max-width: 440px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  position: relative;
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-muted);
  display: grid; place-items: center;
}
.modal-close:hover { color: var(--text); border-color: var(--accent); }

.modal-tabs {
  display: flex;
  background: var(--surface-alt);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 24px;
}
.modal-tab {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  transition: all .25s ease;
}
.modal-tab.is-active { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #04120b; }

.modal h2 { font-size: 22px; margin-bottom: 6px; }
.modal-sub { font-size: 13.5px; margin-bottom: 22px; }

.form-panel { display: none; }
.form-panel.is-active { display: block; animation: fadeInUp .35s ease; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field textarea {
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input.has-error, .field textarea.has-error { border-color: var(--danger); }
.field-error {
  display: none;
  color: var(--danger);
  font-size: 12.5px;
  margin-top: 6px;
}
.field-error.is-visible { display: block; }

.field-pass-wrap { position: relative; }
.pass-toggle {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-faint);
  width: 28px; height: 28px;
  display: grid; place-items: center;
}
.pass-toggle:hover { color: var(--text); }

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  cursor: pointer;
}
.check-field input {
  margin-top: 2px;
  accent-color: var(--accent);
  width: 16px; height: 16px;
}

.form-msg {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.form-msg.is-error { display: flex; background: var(--danger-soft); color: var(--danger); }
.form-msg.is-success { display: flex; background: var(--accent-soft); color: var(--accent); }

.spinner {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(4,18,11,0.35);
  border-top-color: #04120b;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .8; }

.modal-foot { text-align: center; font-size: 13px; color: var(--text-faint); margin-top: 4px; }

/* success check */
.success-check {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  margin: 6px auto 18px;
}
.success-check svg { width: 30px; height: 30px; color: var(--accent); }
.success-check.is-visible svg path { animation: drawCheck .5s ease forwards; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 60px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 48px); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-card h3 { font-size: 18px; margin-bottom: 20px; }
.contact-info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.contact-info-row:first-of-type { border-top: none; }
.contact-info-row .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex: none;
}
.contact-info-row .icon svg { width: 18px; height: 18px; }
.contact-info-row h4 { margin: 0 0 3px; font-size: 14px; color: var(--text); }
.contact-info-row p, .contact-info-row a { margin: 0; font-size: 13.5px; }
.contact-info-row a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .split-feature { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .responsible-gambling { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .payments-wrap { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .sports-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .cta-band { padding: 52px 24px; }
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-h); right: 0; bottom: 0;
  width: min(78vw, 320px);
  background: var(--surface-raised);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  z-index: 190;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a { font-size: 16px; font-weight: 600; color: var(--text); }
.mobile-drawer .badge-18 { align-self: flex-start; }
