/* ============================================================
   DORADOBET1.GT — Bespoke design system
   Brand: Gold #e8b923 / #d4af37 + Deep Blue #1a3a8f / #1c64f2
   on dark #0d1226
   ============================================================ */

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

:root {
  --gold:        #e8b923;
  --gold-deep:   #d4af37;
  --gold-soft:   #f5d76e;
  --blue:        #1a3a8f;
  --blue-bright: #1c64f2;
  --blue-mid:    #1e4cbf;
  --dark:        #0d1226;
  --dark-2:      #111a38;
  --dark-3:      #162047;
  --surface:     #192255;
  --surface-2:   #1f2c66;
  --text:        #e8eaf2;
  --text-muted:  #9aa3c4;
  --border:      rgba(232,185,35,0.18);
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-gold: 0 0 24px rgba(232,185,35,0.22);
  --transition:  0.22s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-tabular: 'Tabular', ui-monospace, 'SF Mono', 'Roboto Mono', monospace;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-soft); }

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark-2);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.wordmark img {
  height: 38px;
  width: auto;
}

.wordmark-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gold);
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.header-nav a {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  background: var(--surface);
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  gap: 2px;
}

.lang-switch a {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}

.lang-switch a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(232,185,35,0.08);
}

.lang-switch a:hover { color: var(--gold-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-outline {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(232,185,35,0.1);
  color: var(--gold-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #0d1226;
  font-weight: 800;
  box-shadow: 0 3px 14px rgba(232,185,35,0.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow: 0 4px 20px rgba(232,185,35,0.45);
  color: #0d1226;
}

.btn-lg {
  padding: 13px 32px;
  font-size: 15px;
  border-radius: 9px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  gap: 4px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav.open {
  max-height: 600px;
  padding: 16px 20px 20px;
}

.mobile-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 7px;
  display: block;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover { background: var(--surface); color: var(--gold); }

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

.mobile-nav .mobile-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mobile-nav .mobile-actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
}

.mobile-nav .mobile-lang {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.mobile-nav .mobile-lang a {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-nav .mobile-lang a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(232,185,35,0.08);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,18,38,0.92) 0%,
    rgba(13,18,38,0.72) 40%,
    rgba(26,58,143,0.40) 70%,
    rgba(13,18,38,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  color: #0d1226;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  max-width: 680px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(232,234,242,0.85);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Gold band accent */
.gold-band {
  height: 5px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-soft) 70%, var(--gold) 100%);
}

/* --- SECTION COMMON --- */
.section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* --- STATS BAR --- */
.stats-bar {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- CATEGORY CHIPS --- */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.chip {
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.chip:hover, .chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,185,35,0.08);
}

/* --- GAME GRID --- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,18,38,0.88) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
}

.game-card-play::before {
  content: '▶';
  font-size: 10px;
}

/* --- BONUS CARD --- */
.bonus-section {
  background: var(--dark-2);
}

.bonus-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-3) 60%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(232,185,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: #0d1226;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.bonus-title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.bonus-title span { color: var(--gold); }

.bonus-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.bonus-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.bonus-perks li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.bonus-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,185,35,0.12) 0%, transparent 100%);
  box-shadow: 0 0 40px rgba(232,185,35,0.2), inset 0 0 30px rgba(232,185,35,0.08);
}

.bonus-circle-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-circle-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

/* --- SPORTS SECTION --- */
.sports-section {
  background: var(--dark-3);
}

.sports-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}

.sports-left {}

.odds-table {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.odds-table-header {
  background: var(--blue);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 80px 80px 80px;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.odds-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 80px;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background var(--transition);
}

.odds-row:last-child { border-bottom: none; }
.odds-row:hover { background: rgba(255,255,255,0.03); }

.odds-match {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.odds-match-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.odds-match-league {
  font-size: 11px;
  color: var(--text-muted);
}

.odds-cell {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: all var(--transition);
}

.odds-cell:hover {
  background: var(--gold);
  color: #0d1226;
  border-color: var(--gold);
}

.sports-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sport-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.sport-feature-card:hover { border-color: var(--gold); }

.sport-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(232,185,35,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sport-feature-content {}

.sport-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.sport-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- APP SECTION --- */
.app-section {
  background: var(--dark-2);
}

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

.app-left {}

.app-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.app-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.app-badge:hover {
  border-color: var(--gold);
  background: rgba(232,185,35,0.06);
}

.app-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.app-badge-text {}
.app-badge-label { font-size: 10px; color: var(--text-muted); display: block; }
.app-badge-store { font-size: 14px; font-weight: 700; color: #fff; display: block; }

.app-right {
  display: flex;
  justify-content: center;
}

.app-preview {
  max-width: 300px;
  width: 100%;
}

/* --- PAYMENT METHODS --- */
.payments-section {
  background: var(--dark-3);
  padding: 50px 20px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.payment-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color var(--transition);
}

.payment-pill:hover { border-color: var(--gold); }

/* --- SEO ARTICLE BLOCK --- */
.seo-section {
  background: var(--dark-2);
  padding: 70px 20px;
}

.seo-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-article h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
}

.seo-article h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.seo-article h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--gold-soft);
  margin: 28px 0 12px;
}

.seo-article p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}

.seo-article a {
  color: var(--gold);
  border-bottom: 1px solid rgba(232,185,35,0.3);
  transition: border-color var(--transition);
}
.seo-article a:hover { border-color: var(--gold); }

.seo-article strong { color: #fff; font-weight: 700; }
.seo-article em { color: var(--gold-soft); font-style: italic; }

.seo-article ul, .seo-article ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.seo-article li {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}

.seo-article ul li::marker { color: var(--gold); }
.seo-article ol li::marker { color: var(--gold); font-weight: 700; }

/* Tables in SEO */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  table-layout: fixed;
  font-size: 14px;
}

.seo-article th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--border);
  overflow-wrap: anywhere;
}

.seo-article td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.seo-article tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

/* FAQ in SEO */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  transition: background var(--transition);
  user-select: none;
}

.faq-q:hover { background: var(--surface-2); }

.faq-q::after {
  content: '＋';
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--transition);
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  padding: 0 20px;
  background: var(--dark-2);
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 16px 20px;
}

.faq-a p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  background: var(--dark-3);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb-inner a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb-inner a:hover { color: var(--gold); }

.breadcrumb-sep {
  color: var(--gold);
  font-size: 11px;
}

.breadcrumb-current {
  color: var(--text);
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-3) 100%);
  padding: 70px 20px;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.cta-title span { color: var(--gold); }

.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.site-footer {
  background: #070e1f;
  border-top: 3px solid var(--gold);
  padding: 56px 20px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-responsible {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #0d1226;
  font-weight: 900;
  font-size: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Interior page hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-3) 100%);
  padding: 48px 20px;
  border-bottom: 2px solid var(--border);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-hero-title {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.6;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */

@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sports-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 860px) {
  /* Hide desktop nav/actions, show burger */
  .header-nav,
  .header-actions { display: none; }

  .burger { display: flex; }

  /* Show mobile nav container */
  .mobile-nav { display: flex; }

  .hero { min-height: 380px; }
  .hero-content { padding: 56px 20px 56px; }

  .bonus-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }

  .bonus-visual { order: -1; }
  .bonus-circle { width: 160px; height: 160px; }
  .bonus-circle-amount { font-size: 40px; }

  .app-grid { grid-template-columns: 1fr; }
  .app-right { order: -1; }
  .app-preview { max-width: 200px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .odds-table-header { font-size: 10px; }
  .odds-match-name { font-size: 12.5px; }
  .odds-cell { font-size: 12.5px; padding: 5px 6px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .bonus-card { padding: 24px 16px; }
  .app-badges { flex-direction: column; }
}

@media (max-width: 560px) {
  .seo-article table {
    font-size: 12px;
  }
  .seo-article th, .seo-article td {
    padding: 8px 8px;
    font-size: 12px;
  }
}

/* Ensure no element pushes layout wider than viewport */
@media (max-width: 400px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { gap: 8px; padding: 0 12px; }
  .bonus-circle { width: 130px; height: 130px; }
  .bonus-circle-amount { font-size: 34px; }
}
