/* ─── LP BET — Stadium Energy ─────────────────────────────────── */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #0c3a29;
  --green-800: #134f39;
  --green-700: #1a664a;
  --green-200: #d5e8e2;
  --green-100: #edf2f1;
  --yellow:    #fcc40a;
  --yellow-d:  #e0ac00;
  --white:     #ffffff;
  --ink:       #0c1614;
  --ink-2:     #3b4744;
  --ink-3:     #6c7a76;
  --line:      rgba(12,22,20,.10);
  --maxw:      1440px;
  --padX:      clamp(20px, 5vw, 80px);
  --bg-app:    #ffffff;
}

html, body { height: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg-app);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* Keyframes */
@keyframes lpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(252,196,10,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(252,196,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(252,196,10,0); }
}
@keyframes lpTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Buttons ─── */
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  transition: background .15s, transform .15s;
}
.btn-yellow:hover { background: var(--yellow-d); transform: translateY(-1px); }
.btn-lg { padding: 18px 30px; border-radius: 10px; font-size: 16px; }
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 17px 24px;
  border-radius: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.btn-green {
  background: var(--green-700);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.dot-red   { width: 6px; height: 6px; border-radius: 50%; background: #e23b3b; display: inline-block; margin-left: 4px; }
.dot-green { width: 6px; height: 6px; border-radius: 50%; background: var(--green-700); display: inline-block; }
.muted     { opacity: .6; }

/* ─── NAV ─── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.lp-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--padX);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-nav-left { display: flex; align-items: center; gap: 48px; min-width: 0; }
.lp-logo img { height: 28px; }
.lp-mainnav {
  display: flex;
  gap: 28px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.lp-mainnav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(12,22,20,.65);
  transition: color .15s;
}
.lp-mainnav a.active, .lp-mainnav a:hover { color: var(--ink); }
.lp-nav-right { display: flex; align-items: center; gap: 12px; }

/* ─── TICKER ─── */
.lp-ticker {
  position: relative;
  background: var(--green-900);
  color: #fff;
  overflow: hidden;
}
.lp-ticker-fade {
  position: absolute; left: 0; top: 0; bottom: 0; width: 220px;
  background: linear-gradient(90deg, var(--green-900) 30%, transparent);
  z-index: 2; pointer-events: none;
}
.lp-ticker-badge {
  position: absolute;
  left: var(--padX); top: 50%; transform: translateY(-50%);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  padding: 6px 12px; border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: .14em;
}
.lp-ticker-pin { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.lp-ticker-track { padding: 14px 0 14px 220px; overflow: hidden; }
.lp-ticker-row {
  display: inline-flex; white-space: nowrap;
  animation: lpTicker 60s linear infinite;
}
.lp-tick {
  display: inline-flex; align-items: center; gap: 10px;
  margin-right: 48px;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 14px; letter-spacing: .02em;
}
.lp-tick .o7 { opacity: .7; }
.lp-tick .o4 { opacity: .4; }
.lp-tick-odd { color: var(--yellow); font-weight: 800; font-family: 'Archivo', sans-serif; }

/* ─── HERO ─── */
.lp-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--padX) clamp(56px, 8vw, 104px);
  background: #fff;
  overflow: hidden;
  max-width: 100%;
}
.lp-hero-diag1, .lp-hero-diag2 {
  position: absolute;
  top: -60px; right: -180px;
  width: 780px; height: 780px;
  transform: rotate(-18deg);
  pointer-events: none;
}
.lp-hero-diag1 {
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow) 60%, transparent 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .95;
}
.lp-hero-diag2 {
  top: 80px; right: -200px;
  width: 720px; height: 720px;
  background: var(--green-800);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.lp-hero-grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.lp-hero-text { min-width: 0; }
.lp-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 99px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
}
.lp-h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: .92; letter-spacing: -.02em;
  margin: 24px 0 20px;
  text-transform: uppercase;
}
.lp-h1-green  { color: var(--green-700); }
.lp-h1-yellow { color: var(--yellow); font-style: italic; }
.lp-lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(12,22,20,.65);
  max-width: 520px;
  margin: 0 0 32px;
}
.lp-cta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.lp-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.lp-stat-n {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 28px; letter-spacing: -.02em;
}
.lp-stat-l {
  font-size: 12px;
  color: rgba(12,22,20,.65);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 4px;
}

/* Hero right card */
.lp-hero-card { position: relative; height: 520px; min-width: 0; }
.lp-photo {
  position: relative; height: 100%;
  border-radius: 18px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(252,196,10,.18), transparent 60%),
    repeating-linear-gradient(-30deg, var(--green-900) 0 8px, rgba(255,255,255,.06) 8px 14px);
}
.lp-photo-label {
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.lp-photo-overlay {
  position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55));
  pointer-events: none;
}
.lp-bonus-pill {
  position: absolute; top: 24px; right: 24px;
  background: var(--yellow); color: var(--ink);
  padding: 12px 16px; border-radius: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 13px;
  letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 2;
}
.lp-bonus-emoji { font-size: 18px; }
.lp-livecard {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: #fff; color: var(--ink);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.30);
  z-index: 2;
}
.lp-livecard-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.lp-livecard-league {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-900);
}
.lp-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: #e23b3b;
}
.lp-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #e23b3b;
  animation: lpPulse 1.6s infinite;
  box-shadow: 0 0 0 0 #e23b3b;
}
.lp-livecard-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px; align-items: center;
  margin-bottom: 16px;
}
.lp-team-l { text-align: left; }
.lp-team-r { text-align: right; }
.lp-team-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 18px;
}
.lp-team-side { font-size: 12px; color: rgba(12,22,20,.5); }
.lp-score { text-align: center; }
.lp-score-n {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: 36px; letter-spacing: -.02em;
}
.lp-score-min {
  font-size: 11px; color: #e23b3b;
  font-weight: 700; letter-spacing: .1em;
}
.lp-odds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.lp-odds button {
  background: var(--green-100);
  border: 1px solid rgba(12,22,20,.06);
  border-radius: 8px;
  padding: 10px 0;
  font-family: 'Archivo', sans-serif;
  transition: background .15s;
}
.lp-odds button:hover { background: var(--green-200); }
.lp-odd-k {
  font-size: 11px;
  color: rgba(12,22,20,.55);
  font-weight: 600; letter-spacing: .08em;
}
.lp-odd-v {
  font-size: 18px; font-weight: 800;
  color: var(--green-700);
}

/* ─── SPORTS TABS ─── */
.lp-sports {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) var(--padX) 0;
}
.lp-sports-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.lp-sport {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border-radius: 99px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 14px;
  transition: background .15s, border-color .15s;
}
.lp-sport:hover { border-color: rgba(12,22,20,.25); }
.lp-sport.active {
  background: var(--green-700);
  color: #fff;
  border-color: transparent;
}

/* ─── Sections ─── */
.lp-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--padX);
}
.lp-section-tight {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.lp-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 16px;
}
.lp-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(12,22,20,.65);
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 8px;
}
.lp-mono-yellow { color: var(--yellow); }
.lp-h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}
.lp-link-arrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--green-700);
  border-bottom: 2px solid var(--green-700);
  padding-bottom: 2px;
}

/* ─── MATCH GRID ─── */
.lp-match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-match {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  position: relative; overflow: hidden;
  transition: border-color .15s, transform .15s;
}
.lp-match:hover { border-color: rgba(12,22,20,.2); transform: translateY(-2px); }
.lp-match-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.lp-league {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
}
.lp-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(12,22,20,.65);
}
.lp-match-teams { margin-bottom: 16px; }
.lp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.lp-row:last-child { border-bottom: none; }
.lp-score-side {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
}
.lp-odds-2, .lp-odds-3 {
  display: grid;
  gap: 6px;
}
.lp-odds-3 { grid-template-columns: 1fr 1fr 1fr; }
.lp-odds-2 { grid-template-columns: 1fr 1fr; }
.lp-odds-2 button, .lp-odds-3 button {
  background: var(--green-100);
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  transition: background .15s;
}
.lp-odds-2 button:hover, .lp-odds-3 button:hover { background: var(--green-200); }

/* ─── BONUS BAND ─── */
.lp-bonus-band {
  position: relative;
  margin: 0 auto;
  background: var(--green-800);
  color: #fff;
  border-radius: 20px;
  padding: clamp(48px, 6vw, 86px) clamp(32px, 5vw, 64px);
  overflow: hidden;
}
.lp-bonus-circle1, .lp-bonus-circle2 {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.lp-bonus-circle1 {
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: var(--green-700);
}
.lp-bonus-circle2 {
  bottom: -180px; right: 60px;
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: .95;
}
.lp-bonus-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp-bonus-pct {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(72px, 9vw, 120px);
  line-height: .85; letter-spacing: -.04em;
  color: var(--yellow);
  margin-top: 14px;
}
.lp-bonus-pct span { font-size: .67em; }
.lp-bonus-amount {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: clamp(22px, 2.5vw, 32px);
  margin-top: 8px;
  letter-spacing: -.01em;
}
.lp-bonus-underline {
  text-decoration: underline var(--yellow) 4px;
  text-underline-offset: 6px;
}
.lp-bonus-p {
  font-size: 16px; line-height: 1.6;
  opacity: .85;
  max-width: 480px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.lp-bonus-photo-wrap {
  display: flex; justify-content: flex-end;
}
.lp-photo-bonus {
  width: 380px; height: 320px;
  border-radius: 14px;
  transform: rotate(6deg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(252,196,10,.18), transparent 60%),
    repeating-linear-gradient(-30deg, var(--green-800) 0 8px, rgba(255,255,255,.06) 8px 14px);
}

/* ─── STEPS ─── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-step {
  background: var(--green-100);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.lp-step-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 96px; line-height: 1;
  color: var(--yellow);
  letter-spacing: -.04em;
  position: absolute; right: 18px; top: 6px;
  opacity: .9;
}
.lp-step-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.lp-step-t {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 24px;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  position: relative;
}
.lp-step-d {
  font-size: 15px;
  color: rgba(12,22,20,.65);
  line-height: 1.6;
  margin: 0; max-width: 280px;
  position: relative;
}

/* ─── PAYMENTS ─── */
.lp-pay-band {
  background: var(--green-900);
  color: #fff;
  border-radius: 16px;
  padding: 40px clamp(28px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.lp-pay-h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: clamp(20px, 2.2vw, 28px);
  margin: 0; letter-spacing: -.01em;
}
.lp-pay-list { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-pay {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-family: 'Archivo', sans-serif;
  font-weight: 600; font-size: 13px;
  color: #fff;
}
.lp-pay-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ─── FAQ ─── */
.lp-faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
}
.lp-faq-sub {
  font-size: 15px;
  color: rgba(12,22,20,.65);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 320px;
}
.lp-faq-row {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 18px;
  align-items: start;
}
.lp-faq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--green-700);
  font-weight: 600;
}
.lp-faq-body h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.lp-faq-body p {
  font-size: 14px;
  color: rgba(12,22,20,.65);
  line-height: 1.6;
  margin: 0; max-width: 600px;
}
.lp-faq-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: rgba(12,22,20,.65);
  font-size: 18px;
}

/* ─── RESPONSIBLE ─── */
.lp-resp {
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 16px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
}
.lp-resp-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lp-resp-t {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 20px;
  margin-bottom: 6px;
}
.lp-resp-d {
  font-size: 14px; line-height: 1.55;
  opacity: .8;
  max-width: 780px;
}

/* ─── FOOTER ─── */
.lp-footer {
  background: #0a1a14;
  color: #fff;
  padding: clamp(48px, 6vw, 72px) var(--padX) clamp(28px, 4vw, 40px);
}
.lp-foot-grid {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.lp-foot-logo {
  height: 30px;
  filter: brightness(0) invert(1);
}
.lp-foot-tagline {
  font-size: 13px;
  opacity: .6; line-height: 1.6;
  max-width: 280px;
  margin-top: 18px;
}
.lp-foot-social {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.lp-foot-social div {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 11px;
}
.lp-foot-h {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.lp-foot-col div:not(.lp-foot-h) {
  font-size: 14px; opacity: .7;
  margin-bottom: 10px;
  cursor: pointer;
  transition: opacity .15s;
}
.lp-foot-col div:not(.lp-foot-h):hover { opacity: 1; }
.lp-foot-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.lp-foot-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; opacity: .45;
}
.lp-foot-age {
  display: flex; gap: 14px; align-items: center;
  font-size: 12px; opacity: .6;
}
.lp-age-badge {
  padding: 6px 12px;
  border: 1.5px solid #fff;
  border-radius: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 12px;
  opacity: 1;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-card { height: 460px; }
  .lp-mainnav { display: none; }
  .lp-bonus-grid { grid-template-columns: 1fr; }
  .lp-bonus-photo-wrap { display: none; }
  .lp-faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-foot-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .lp-match-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-resp { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .lp-resp-icon { width: 48px; height: 48px; }
}
@media (max-width: 640px) {
  .lp-hero-diag1, .lp-hero-diag2 { display: none; }
  .lp-hero-card { height: 420px; }
  .lp-livecard { padding: 16px; }
  .lp-score-n { font-size: 28px; }
  .lp-bonus-pill { font-size: 11px; padding: 8px 12px; }
  .lp-match-grid { grid-template-columns: 1fr; }
  .lp-foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-stats { gap: 20px; }
  .lp-pay-band { padding: 28px 20px; }
  .lp-nav-right .btn-link { display: none; }
}

/* ─── Legal / Mentions page ───────────────────────────────────── */

.lp-legal-hero {
  position: relative;
  background: var(--green-700);
  color: #fff;
  padding: clamp(48px, 7vw, 88px) var(--padX) clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.lp-legal-hero::after {
  content: "";
  position: absolute; top: -120px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,196,10,.18), transparent 60%);
  pointer-events: none;
}
.lp-legal-hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.lp-legal-h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  line-height: .95; letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 16px 0 18px;
}
.lp-legal-lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 0 16px;
}
.lp-legal-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
}

.lp-legal-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--padX);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

/* TOC */
.lp-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  font-family: 'Archivo', sans-serif;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
}
.lp-toc::-webkit-scrollbar { width: 6px; }
.lp-toc::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.lp-toc-h {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}
.lp-toc-list {
  list-style: none;
  padding: 0; margin: 0;
}
.lp-toc-list li { margin-bottom: 4px; }
.lp-toc-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(12,22,20,.7);
  border-left: 2px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}
.lp-toc-list a:hover {
  background: var(--green-100);
  color: var(--ink);
  border-left-color: var(--yellow);
}

/* Article */
.lp-legal-content { min-width: 0; }
.lp-legal-section {
  padding: 32px 0 48px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.lp-legal-section:last-of-type { border-bottom: none; }
.lp-legal-h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 8px 0 24px;
}
.lp-legal-section h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 28px 0 12px;
  color: var(--green-700);
  scroll-margin-top: 100px;
}
.lp-legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(12,22,20,.78);
  margin: 0 0 14px;
}
.lp-legal-section ul {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.lp-legal-section li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(12,22,20,.78);
  margin-bottom: 6px;
}
.lp-legal-section li::marker { color: var(--yellow); }
.lp-legal-section strong { color: var(--ink); font-weight: 700; }

/* Callout block */
.lp-callout {
  background: var(--green-100);
  border-left: 4px solid var(--green-700);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-900);
  margin: 18px 0;
}
.lp-callout-yellow {
  background: rgba(252, 196, 10, 0.14);
  border-left-color: var(--yellow);
  color: var(--ink);
}
.lp-callout strong { display: block; margin-bottom: 4px; font-weight: 800; }

/* Rules grid */
.lp-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 28px;
}
.lp-rule {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.lp-rule:hover { border-color: var(--yellow); transform: translateY(-2px); }
.lp-rule-n {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.lp-rule-t {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}
.lp-rule p {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: rgba(12,22,20,.65) !important;
  margin: 0 !important;
}

/* Table */
.lp-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lp-table thead {
  background: var(--green-900);
  color: #fff;
}
.lp-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lp-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: rgba(12,22,20,.78);
  vertical-align: top;
  line-height: 1.55;
}
.lp-table tbody tr:hover { background: rgba(252,196,10,0.04); }

/* Back to top */
.lp-back-top {
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
}
.lp-back-top a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-700);
  padding: 10px 20px;
  border: 1.5px solid var(--green-700);
  border-radius: 99px;
  transition: background .15s, color .15s;
}
.lp-back-top a:hover { background: var(--green-700); color: #fff; }

/* Footer link styles for both pages */
.lp-foot-col a {
  color: inherit;
  transition: opacity .15s, color .15s;
}
.lp-foot-col a:hover { color: var(--yellow); opacity: 1; }

/* Responsive */
@media (max-width: 1100px) {
  .lp-legal-shell { grid-template-columns: 1fr; gap: 32px; }
  .lp-toc {
    position: static;
    max-height: none;
    background: var(--green-100);
    padding: 20px;
    border-radius: 12px;
  }
  .lp-rules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lp-rules-grid { grid-template-columns: 1fr; }
  .lp-table th, .lp-table td { padding: 10px 12px; font-size: 13px; }
}

/* ─── Chatbot widget (LP BET branded) ─────────────────────────── */

#chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  font-size: 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#chatbot-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(252, 196, 10, 0.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
#chatbot-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(252, 196, 10, 0.55);
}
#chatbot-toggle svg { width: 28px; height: 28px; }
#chatbot-toggle.hidden { display: none; }

#chatbot-window {
  position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 620px;
  max-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: slideIn 0.25s ease-out;
}
#chatbot-window.hidden { display: none; }
@keyframes slideIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

#chatbot-window > header {
  background: var(--green-700);
  color: #fff;
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
#chatbot-window .header-info { display: flex; align-items: center; gap: 12px; }
#chatbot-window .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
  font-family: 'Archivo', sans-serif;
}
#chatbot-window header h1 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
  margin: 0;
}
#chatbot-window .status {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex; align-items: center; gap: 5px;
  margin-top: 2px;
}
#chatbot-window .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

#chatbot-close {
  background: transparent;
  border: none; color: #fff;
  cursor: pointer; padding: 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  opacity: 0.85;
  transition: opacity 0.15s, background 0.15s;
}
#chatbot-close:hover { opacity: 1; background: rgba(255,255,255,0.15); }
#chatbot-close svg { width: 20px; height: 20px; }

.messages {
  flex: 1; overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  background: #f6f8f7;
  scroll-behavior: smooth;
}
.messages::-webkit-scrollbar { width: 6px; }
.messages::-webkit-scrollbar-thumb { background: #cbd5d0; border-radius: 3px; }
.messages::-webkit-scrollbar-thumb:hover { background: #94a39c; }

.message { display: flex; max-width: 100%; }
.message.user { justify-content: flex-end; }
.message.assistant { justify-content: flex-start; }

.bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  word-wrap: break-word;
  font-size: 0.9rem;
  line-height: 1.55;
}
.message.user .bubble {
  background: var(--green-700);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.message.assistant .bubble {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e5ebe8;
  border-bottom-left-radius: 4px;
}

.bubble p { margin: 0 0 8px; }
.bubble p:last-child { margin-bottom: 0; }
.bubble ul, .bubble ol { margin: 6px 0 8px; padding-left: 22px; }
.bubble li { margin-bottom: 3px; }
.bubble li:last-child { margin-bottom: 0; }
.bubble h1, .bubble h2, .bubble h3, .bubble h4 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
  margin: 10px 0 6px;
}
.bubble h1:first-child, .bubble h2:first-child, .bubble h3:first-child { margin-top: 0; }
.bubble strong { font-weight: 700; }
.bubble em { font-style: italic; }

.bubble code {
  background: rgba(26, 102, 74, 0.1);
  color: var(--green-700);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.85em;
  font-weight: 500;
}
.message.user .bubble code {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.bubble pre {
  background: var(--green-900);
  color: #f1f5f3;
  padding: 10px 12px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 8px 0;
  font-size: 0.82rem;
}
.bubble pre code { background: transparent; color: inherit; padding: 0; font-weight: 400; }
.bubble a { color: var(--green-700); text-decoration: underline; }
.message.user .bubble a { color: var(--yellow); }

.bubble blockquote {
  border-left: 3px solid #cbd5d0;
  padding-left: 10px;
  margin: 6px 0;
  color: #647069;
}

.bubble table {
  border-collapse: collapse;
  margin: 8px 0;
  font-size: 0.82rem;
  width: 100%;
}
.bubble th, .bubble td {
  border: 1px solid #e5ebe8;
  padding: 5px 8px;
  text-align: left;
}
.bubble th { background: var(--green-100); font-weight: 700; }

.bubble.typing::after {
  content: "▍";
  animation: blink 1s step-end infinite;
  color: #94a39c;
  font-weight: normal;
}
@keyframes blink { 50% { opacity: 0; } }

.bubble.error {
  background: #fef2f2 !important;
  color: #b91c1c !important;
  border-color: #fecaca !important;
}

.chat-form {
  display: flex; gap: 8px;
  padding: 12px 14px 8px;
  border-top: 1px solid #e5ebe8;
  background: #fff;
  flex-shrink: 0;
  align-items: flex-end;
}
.chat-form textarea {
  flex: 1;
  border: 1px solid #e5ebe8;
  border-radius: 22px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  resize: none; outline: none;
  max-height: 100px;
  line-height: 1.4;
  transition: border-color .15s, box-shadow .15s;
}
.chat-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(26, 102, 74, 0.12);
}

#send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .15s, opacity .15s, background .15s;
}
#send:hover:not(:disabled) { transform: scale(1.05); background: var(--green-800); }
#send:disabled { opacity: 0.5; cursor: not-allowed; }
#send svg { width: 16px; height: 16px; }

#chatbot-window > footer {
  padding: 4px 14px 8px;
  background: #fff;
  font-size: 0.65rem;
  color: #94a39c;
  text-align: center;
  min-height: 18px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  #chatbot-widget { bottom: 16px; right: 16px; }
  #chatbot-window {
    width: calc(100vw - 32px);
    height: calc(100vh - 32px);
    max-height: none;
    bottom: 0; right: 0;
  }
}
