/* ============================================================
   bet365bet.best — Bet365 Chile — Design System
   Palette: #0a1210 bg | #126e51 bet365 green | #ffdf1b accent
   Font: Outfit (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  /* Bet365 official palette */
  --b365-green:     #027B5B;
  --b365-green-dk:  #015C44;
  --b365-green-lt:  #03996E;
  --b365-yellow:    #F9DC1C;
  --b365-yellow-lt: #FFE566;
  --bg-deep:        #1A1A1A;
  --bg-main:        #222222;
  --bg-card:        #2E2E2E;
  --bg-card2:       #383838;
  --gold:           #027B5B;
  --gold-bright:    #F9DC1C;
  --gold-dim:       #015C44;
  --accent:         #F9DC1C;
  --text:           #FFFFFF;
  --text-dim:       #CCCCCC;
  --text-faint:     #999999;
  --green:          #3DDC84;
  --red:            #FF4444;
  --border:         rgba(255,255,255,0.08);
  --border-hover:   rgba(249,220,28,0.45);
  --radius:         4px;
  --radius-lg:      8px;
  --shadow-gold:    0 4px 16px rgba(0,0,0,0.35);
  --transition:     0.2s ease;
  --font:           -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--b365-yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--b365-yellow-lt); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.25rem, 3vw, 1.9rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: var(--text-dim); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; color: #d1ccc4; }
strong { color: var(--text); font-weight: 600; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ── Header / Nav (Bet365 green bar) ── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--b365-green);
  border-bottom: 2px solid var(--b365-green-dk);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--b365-yellow);
  letter-spacing: -0.03em;
  text-transform: lowercase;
}
.logo .wordmark { color: var(--b365-yellow); font-weight: 800; }
.logo .wordmark-num { color: var(--b365-yellow); }
.logo-region {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 0.25rem;
  padding: 0.15rem 0.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
}
.logo svg { width: 32px; height: 32px; }
.logo-img { display: none; }
.logo span { color: var(--b365-yellow); }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  margin: 0;
}
nav ul li a {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--b365-yellow);
  background: rgba(0,0,0,0.15);
}
.nav-cta {
  background: var(--b365-yellow) !important;
  color: #1A1A1A !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
}
.nav-cta:hover {
  background: var(--b365-yellow-lt) !important;
  transform: none !important;
  color: #000 !important;
}

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--b365-yellow); margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Sub navigation (Bet365 product tabs) ── */
.subnav {
  background: var(--b365-green-dk);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.subnav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  -webkit-overflow-scrolling: touch;
}
.subnav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.subnav a:hover {
  color: var(--b365-yellow);
  background: rgba(0,0,0,0.12);
}
.subnav a.active {
  color: var(--b365-yellow);
  border-bottom-color: var(--b365-yellow);
  background: rgba(0,0,0,0.18);
}

/* ── Hero Split Layout ── */
.hero {
  background: var(--bg-main);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--b365-green);
}
.hero::before { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  text-align: left;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,220,28,0.12);
  border: 1px solid rgba(249,220,28,0.35);
  color: var(--b365-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  max-width: 820px;
  margin: 0 0 1.2rem 0;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  text-align: left;
}
.hero-lead {
  max-width: 680px;
  margin: 0 0 2rem 0;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
  text-align: left;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.hero-banner-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 2px solid rgba(249, 220, 28, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(2, 123, 91, 0.25);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.hero-banner-img:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--b365-yellow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(249, 220, 28, 0.2);
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content {
    align-items: center;
  }
  .hero-content h1 {
    text-align: center;
    margin: 0 auto 1.2rem;
  }
  .hero-content .hero-lead {
    text-align: center;
    margin: 0 auto 2rem;
  }
  .hero-content .hero-buttons {
    justify-content: center;
  }
  .hero-banner-img {
    max-width: 320px;
  }
}


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 110%; }
.btn-primary {
  background: var(--b365-yellow);
  color: #1A1A1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-weight: 700;
  border-radius: 4px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  color: #000;
  background: var(--b365-yellow-lt);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 4px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--b365-yellow);
  color: var(--b365-yellow);
  transform: translateY(-1px);
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }

/* ── Quick Facts Table ── */
.quick-facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}
.quick-facts table { width: 100%; border-collapse: collapse; }
.quick-facts th, .quick-facts td {
  padding: 0.75rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  font-size: 0.93rem;
}
.quick-facts th {
  width: 38%;
  color: var(--text-dim);
  font-weight: 500;
  background: rgba(201,168,76,0.04);
}
.quick-facts td { color: var(--text); font-weight: 500; }
.quick-facts tr:last-child th,
.quick-facts tr:last-child td { border-bottom: none; }

/* ── Generic Table ── */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.data-table th {
  background: var(--b365-green-dk);
  color: var(--b365-yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--b365-green);
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.9rem;
  background: var(--bg-card);
}
.data-table tr:hover td { background: var(--bg-card2); }
.data-table a { color: var(--b365-yellow); }
.data-table .check { color: var(--green); font-size: 1rem; }
.data-table .cross  { color: var(--red); font-size: 1rem; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { color: var(--gold); margin-bottom: 0.4rem; font-size: 1.05rem; }
.card p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ── Slot Grid ── */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.1rem; }
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
  border-color: var(--border-hover);
}
.slot-card img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; }
.slot-card-body { padding: 0.85rem; }
.slot-card-body h3 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
.slot-provider { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── FAQ ── */
.faq { margin: 2rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--b365-yellow); font-size: 1.3rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--bg-card);
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--b365-green-dk);
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 0.75rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--b365-yellow);
  margin-bottom: 0.5rem;
}
.section-header h2 { color: #fff; }
.section-header h2 { max-width: 650px; margin: 0 auto 0.75rem; }
.section-header p { color: var(--text-dim); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-faint);
  padding: 0.85rem 0;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb .current { color: var(--b365-yellow); }
.breadcrumb a:hover { color: var(--b365-yellow); }

/* ── Pros/Cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.pros h3 { color: var(--green); margin-bottom: 0.75rem; }
.cons h3 { color: #f87171; margin-bottom: 0.75rem; }
.pros li::marker { color: var(--green); }
.cons li::marker { color: #f87171; }

/* ── Steps ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.step-num {
  counter-increment: step;
  min-width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #b8922a, #f0c040);
  color: #0a0c11;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  content: counter(step);
}
.step-content h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.step-content p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--b365-green-dk);
  border: 1px solid var(--b365-green);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--text-dim); max-width: 500px; margin: 0 auto 1.75rem; }

/* ── Update date ── */
.page-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ── Label badges ── */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-gold  { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-green { background: rgba(34,197,94,0.12);  color: #4ade80;    border: 1px solid rgba(34,197,94,0.25); }
.badge-red   { background: rgba(239,68,68,0.12);  color: #f87171;    border: 1px solid rgba(239,68,68,0.25); }

/* ── Footer ── */
footer {
  background: var(--b365-green-dk);
  border-top: 3px solid var(--b365-green);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}
.footer-nav h4 { color: var(--b365-yellow); }
.footer-nav ul li a { color: rgba(255,255,255,0.75); }
.footer-nav ul li a:hover { color: var(--b365-yellow); }
.footer-brand p { color: rgba(255,255,255,0.65); }
.footer-disclaimer { color: rgba(255,255,255,0.55); }
.footer-links a { color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--b365-yellow); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-faint); line-height: 1.6; }
.footer-nav h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul li a { font-size: 0.85rem; color: var(--text-dim); }
.footer-nav ul li a:hover { color: var(--gold); }

.footer-info-note {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 1.25rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-legal {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.legal-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
}
.footer-disclaimer { font-size: 0.78rem; color: var(--text-faint); line-height: 1.65; max-width: 780px; margin-bottom: 1rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: var(--text-faint); }
.footer-links a:hover { color: var(--gold); }

/* ── Highlight box ── */
.info-box {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.info-box strong { color: var(--gold); }

.warn-box {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-left: 3px solid #ef4444;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* ── Category tabs ── */
.cat-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.cat-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: rgba(201,168,76,0.1);
  border-color: var(--border-hover);
  color: var(--gold);
}

/* ── Stat boxes ── */
.stats-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat-box {
  flex: 1;
  min-width: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
}
.stat-val { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat-lbl { font-size: 0.77rem; color: var(--text-dim); margin-top: 0.25rem; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

/* ── Utilities ── */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-dim    { color: var(--text-dim); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer {
  background: linear-gradient(90deg, transparent 25%, rgba(201,168,76,0.15) 50%, transparent 75%);
  background-size: 400px 100%;
  animation: shimmer 2.5s infinite;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,12,17,0.97); border-bottom: 1px solid var(--border); padding: 1rem; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0.25rem; }
  nav ul li a { display: block; padding: 0.7rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-sub { padding: 2.5rem 0 2rem; }
  .content-section { padding: 2.25rem 0; }
  .page-lead { font-size: 1.02rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.5rem; }
}

/* ── FAQ JS toggle ── */

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: -100%; /* Default hidden */
  left: 0;
  width: 100%;
  background: rgba(10, 20, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 9999;
  border-top: 1px solid rgba(249, 220, 28, 0.3);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.65);
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mobile-sticky-cta.visible {
  bottom: 0;
}
.mobile-sticky-cta .btn {
  width: 100%;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0a1210 !important;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--b365-yellow) 0%, #D9A406 100%) !important;
  box-shadow: 0 4px 15px rgba(249, 220, 28, 0.3);
  animation: pulse-glow-cta 2.2s infinite;
  border: none;
}
.mobile-sticky-cta .btn:hover {
  background: linear-gradient(135deg, var(--b365-yellow-lt) 0%, #F9DC1C 100%) !important;
  transform: translateY(-1px);
}

@keyframes pulse-glow-cta {
  0% { box-shadow: 0 4px 10px rgba(249, 220, 28, 0.3); }
  50% { box-shadow: 0 4px 22px rgba(249, 220, 28, 0.65), 0 0 10px rgba(249, 220, 28, 0.25); }
  100% { box-shadow: 0 4px 10px rgba(249, 220, 28, 0.3); }
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

/* ── SEO Hub & Related Links ── */
.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.seo-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.seo-hub-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.seo-hub-card h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.seo-hub-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-hub-card li {
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}
.seo-hub-card li a { color: var(--text-dim); }
.seo-hub-card li a:hover { color: var(--gold-bright); }
.related-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1.5rem;
}
.related-links li { margin: 0; }
.related-links a { font-weight: 500; }

.topic-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.topic-photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.topic-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.topic-photo-card p {
  margin: 0;
  padding: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.global-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem 1rem;
}
.global-nav-links li {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.global-nav-links a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
}
.global-nav-links a:hover {
  color: var(--gold-bright);
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.next-step-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.next-step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.next-step-num {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.98rem;
}
.next-step-desc {
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ── Sub-page UX layer ── */
.hero-sub { padding: 3.25rem 0 2.75rem; }
.hero-sub h1 { max-width: 760px; }
.hero-sub .hero-buttons { margin-bottom: 1.25rem; }

/* Zebra section backgrounds for reading rhythm */
.section-base { background: var(--bg-deep); }
.section-alt  { background: var(--bg-main); }

/* Content sections: narrower measure + comfortable spacing */
.content-section { padding: 3rem 0; }
.content-section .prose { max-width: 820px; }
.content-section .prose > p { font-size: 1rem; line-height: 1.75; }
.content-section .prose .table-wrap,
.content-section .prose .checklist,
.content-section .prose .callout { margin-top: 1.5rem; }

/* Accent heading for content blocks */
.content-h2 {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1.1rem;
  border-left: 3px solid var(--gold);
}

/* Lead paragraph under hero/breadcrumb */
.page-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 820px;
  margin: 0.5rem 0 1.5rem;
}

/* In-guide quick links (chips) */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--border);
}
.quick-links-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-right: 0.25rem;
}
.quick-links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}
.quick-links a:hover { background: rgba(201,168,76,0.16); color: var(--gold-bright); }

/* Styled checklist (replaces bare bullets) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.6rem;
}
.checklist li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 2.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #d1ccc4;
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0.8rem;
  top: 0.7rem;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Callout box (replaces info-box on new pages) */
.callout {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.callout strong { color: var(--text); }

/* ── Game photo cards ── */
.section-intro {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  text-align: center;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
}
.game-card {
  background: #1e1e1e;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  border-color: var(--b365-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}
.game-card-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  background: #252525;
  border-top: 2px solid var(--b365-green);
}
.game-card-body .btn-sm {
  background: var(--b365-yellow);
  color: #1a1a1a;
  border-radius: 3px;
  font-weight: 700;
}
.seo-hub-card li a:hover { color: var(--b365-yellow); }
.seo-hub-card h3 { color: var(--b365-yellow); }
.content-h2 { color: #fff; border-left: 4px solid var(--b365-green); padding-left: 0.75rem; }
.section-base { background: var(--bg-main); }
.section-alt { background: #1e1e1e; }

.game-card a:first-child { display: block; }
.game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  background: var(--bg-card2);
}
.game-card-body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-dim);
}
.btn-sm {
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  align-self: flex-start;
}
.steps-list {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.35rem;
  counter-reset: step;
}
.steps-list li {
  margin-bottom: 0.65rem;
  padding-left: 0.35rem;
  line-height: 1.65;
  color: #d1ccc4;
}
.prose p { font-size: 1.02rem; line-height: 1.8; }
.content-h2 { margin-top: 0.25rem; margin-bottom: 1rem; }
