/* ============================================================
   ECUABET PA — bespoke stylesheet
   Palette: dark navy #0d1b3e | yellow #ffd400 | blue #1a73e8
   ============================================================ */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b3e;
  --navy2:  #0a1530;
  --navy3:  #111f45;
  --yellow: #ffd400;
  --yellow2: #f5c800;
  --blue:   #1a73e8;
  --blue2:  #1561c5;
  --white:  #ffffff;
  --muted:  #8899bb;
  --card:   #14244e;
  --border: rgba(255,212,0,0.15);
  --text:   #d8e4ff;
  --radius: 10px;
  --font: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy2);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Tabular nums for odds */
.odds, .odds-board td { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--yellow);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 20px;
}

.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(255,212,0,0.12);
  color: var(--yellow);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.lang-switch {
  display: flex;
  gap: 2px;
  align-items: center;
}
.lang-switch a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.15s;
  text-decoration: none;
}
.lang-switch a:hover { color: var(--yellow); }
.lang-switch a.active {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(255,212,0,0.08);
}
.lang-sep { color: var(--muted); font-size: 12px; }

.btn-login {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 7px;
  padding: 7px 16px;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-login:hover { border-color: var(--white); background: rgba(255,255,255,0.05); text-decoration: none; }

.btn-register {
  font-size: 13px;
  font-weight: 800;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 7px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-register:hover { background: var(--yellow2); text-decoration: none; }

/* Burger — hidden on desktop */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex: 0 0 auto;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--yellow);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav — hidden by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
  gap: 6px;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(255,212,0,0.1); color: var(--yellow); }

.mobile-nav .mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mobile-nav .mobile-lang {
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  align-items: center;
}
.mobile-nav .mobile-lang a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
}
.mobile-nav .mobile-lang a.active {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(255,212,0,0.08);
}

.mobile-nav .mobile-cta {
  display: flex;
  gap: 10px;
  padding: 8px 14px;
}
.mobile-nav .mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
}
.mobile-nav .mobile-cta .btn-login { border: 1.5px solid rgba(255,255,255,0.3); }
.mobile-nav .mobile-cta .btn-register { background: var(--yellow); color: var(--navy); }

/* ============================================================
   HERO — SPORTSBOOK STYLE
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  align-items: center;
}

.hero-content {
  padding: 56px 40px 56px 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,212,0,0.12);
  border: 1px solid rgba(255,212,0,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--yellow); }

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.hero-cta-primary:hover { background: var(--yellow2); transform: translateY(-1px); text-decoration: none; }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.15s;
}
.hero-cta-secondary:hover { border-color: rgba(255,255,255,0.5); text-decoration: none; }

/* Hero odds board */
.hero-odds-panel {
  background: rgba(10, 21, 48, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
  backdrop-filter: blur(8px);
}
.odds-panel-header {
  background: var(--blue);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.odds-panel-header .league-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.odds-panel-header .league-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.odds-panel-header .live-badge {
  margin-left: auto;
  background: #e53935;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.odds-match {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.odds-match:last-child { border-bottom: none; }

.match-info .match-teams {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.match-info .match-time {
  font-size: 11px;
  color: var(--muted);
}
.match-info .match-score {
  font-size: 15px;
  font-weight: 800;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.odds-buttons {
  display: flex;
  gap: 6px;
}
.odds-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 52px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.odds-btn:hover { background: rgba(26,115,232,0.2); border-color: var(--blue); }
.odds-btn .odds-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.odds-btn .odds-val { font-size: 14px; font-weight: 800; color: var(--yellow); font-variant-numeric: tabular-nums; }

/* Hero image column */
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%, transparent 70%, var(--navy2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Yellow accent bar below hero */
.hero-accent-bar {
  height: 4px;
  background: linear-gradient(to right, var(--blue), var(--yellow), var(--blue));
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy3);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item .trust-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,212,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.trust-item .trust-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.trust-item .trust-sub {
  font-size: 11px;
  color: var(--muted);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: 64px 24px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section--alt {
  background: var(--navy3);
}

.section-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.section-title span { color: var(--yellow); }

.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}

.section-header {
  margin-bottom: 32px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.section-link:hover { color: var(--yellow); text-decoration: none; }

/* ============================================================
   SPORTS SECTION — odds board
   ============================================================ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.sport-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.sport-card:hover { border-color: rgba(255,212,0,0.4); }

.sport-card-header {
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sport-card-header .sport-icon {
  font-size: 18px;
}
.sport-card-header .sport-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sport-card-header .match-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
}

.sport-match {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.sport-match:last-child { border-bottom: none; }

.match-teams-col .teams { font-size: 13px; color: var(--white); font-weight: 600; line-height: 1.4; }
.match-teams-col .competition { font-size: 11px; color: var(--muted); margin-top: 2px; }

.match-odds-row {
  display: flex;
  gap: 5px;
}
.odd-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.odd-pill:hover { background: rgba(26,115,232,0.15); border-color: var(--blue); }
.odd-pill .odd-type { font-size: 9px; color: var(--muted); text-transform: uppercase; }
.odd-pill .odd-num { font-size: 13px; font-weight: 800; color: var(--yellow); font-variant-numeric: tabular-nums; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-section {
  padding: 48px 24px;
}
.promo-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.promo-banner-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.promo-banner-card img {
  width: 100%;
  height: auto;
  display: block;
}
.promo-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  text-align: right;
}

/* ============================================================
   CASINO SECTION
   ============================================================ */
.casino-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.casino-tab {
  padding: 7px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.casino-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.casino-tab.active {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.game-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,212,0,0.15); }

.game-card img {
  width: 100%;
  aspect-ratio: 726 / 459;
  object-fit: cover;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,21,48,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-play-btn {
  display: block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  transition: background 0.15s;
}
.game-play-btn:hover { background: var(--yellow2); text-decoration: none; }

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s;
}
.payment-card:hover { border-color: rgba(255,212,0,0.4); }

.payment-card .pay-icon {
  font-size: 28px;
  line-height: 1;
}
.payment-card .pay-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.payment-card .pay-speed {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.app-content .app-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.app-content .app-title span { color: var(--yellow); }
.app-content .app-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.app-badge:hover { border-color: var(--yellow); text-decoration: none; }
.app-badge .badge-icon { font-size: 22px; }
.app-badge .badge-text .badge-sub { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.app-badge .badge-text .badge-main { font-size: 14px; font-weight: 800; color: var(--white); }

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.app-feature .feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,212,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--yellow);
}
.app-feature .feat-text { font-size: 13px; color: var(--muted); }
.app-feature .feat-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }

.app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  height: 480px;
  background: linear-gradient(145deg, #1a2a5c, #0d1b3e);
  border-radius: 36px;
  border: 2px solid rgba(255,212,0,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,212,0,0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-screen {
  flex: 1;
  background: var(--navy2);
  margin: 8px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}
.phone-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.phone-balance {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.phone-balance-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.phone-btn {
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 10px;
  margin-top: 8px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 24px;
  background: var(--navy3);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-inner a, .breadcrumb-inner span {
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--blue); }
.breadcrumb-inner a:hover { color: var(--yellow); text-decoration: none; }
.breadcrumb-inner .bc-sep { color: var(--muted); opacity: 0.5; }
.breadcrumb-inner .bc-current { color: var(--white); font-weight: 600; }

/* ============================================================
   SEO ARTICLE BLOCK
   ============================================================ */
.seo-section {
  padding: 56px 24px 72px;
  background: var(--navy2);
}
.seo-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ALL headings must live inside .seo-inner — enforced in HTML */
.seo-inner h1 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  border-left: 4px solid var(--yellow);
  padding-left: 18px;
}

.seo-inner h2 {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--white);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.seo-inner h3 {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  color: var(--yellow);
  margin: 24px 0 10px;
}

.seo-inner p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
}

.seo-inner a {
  color: var(--blue);
  font-weight: 600;
}
.seo-inner a:hover { color: var(--yellow); }

.seo-inner ul, .seo-inner ol {
  margin: 0 0 18px 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.seo-inner li { margin-bottom: 6px; }

.seo-inner strong { color: var(--white); font-weight: 700; }
.seo-inner em { color: var(--muted); font-style: italic; }

/* Responsive tables */
.seo-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  table-layout: fixed;
  font-size: 14px;
}
.seo-inner th, .seo-inner td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-inner th {
  background: var(--card);
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
}
.seo-inner tr:nth-child(even) td { background: rgba(20,36,78,0.4); }

/* FAQ accordion */
.seo-inner .faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.seo-inner .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--card);
  transition: background 0.15s;
  list-style: none;
}
.seo-inner .faq-q:hover { background: rgba(26,115,232,0.1); }
.seo-inner .faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--yellow);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.seo-inner .faq-item.open .faq-q::after { transform: rotate(45deg); }
.seo-inner .faq-answer {
  display: none;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  background: var(--navy2);
  line-height: 1.7;
}
.seo-inner .faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(1);
}
.footer-brand .footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.footer-brand .footer-rg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #ef9a9a;
}

.footer-col .footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-copyright strong { color: var(--white); }
.footer-rg-line {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}
.age-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(229,57,53,0.15);
  border: 2px solid #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #ef9a9a;
  flex-shrink: 0;
}

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-bottom: 3px solid var(--yellow);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.page-hero-title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero-title span { color: var(--yellow); }
.page-hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .app-inner { grid-template-columns: 1fr; }
  .app-visual { display: none; }
}

@media (max-width: 860px) {
  /* Mobile header: ONLY wordmark + burger */
  .header-nav,
  .header-actions {
    display: none !important;
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }
  .site-header {
    justify-content: space-between;
  }

  .hero { min-height: auto; }
  .hero-content { padding: 32px 0; }
  .sports-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .app-features { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 40px 16px; }
  .seo-section { padding: 36px 16px 48px; }
  .trust-bar { padding: 12px 16px; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Responsive tables */
  .seo-inner table { font-size: 12px; }
  .seo-inner th, .seo-inner td { padding: 6px 8px; font-size: 12px; }

  .hero-cta-row { flex-direction: column; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; text-align: center; justify-content: center; }

  .odds-buttons { gap: 4px; }
  .odds-btn { min-width: 44px; padding: 5px 7px; }
  .odds-btn .odds-val { font-size: 12px; }

  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero { padding: 32px 16px; }
  .breadcrumb { padding: 10px 16px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 24px; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 24px 0; }
}
