/* ============================================================
   Sports Bet Australia — Main Stylesheet
   Brand: Blue #0052CC | Yellow #FFD700 | Dark #0D1B2A
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0052CC;
  --blue-dark:  #003A99;
  --blue-darker:#001F5C;
  --blue-light: #4D8FE0;
  --blue-pale:  #EBF2FF;
  --yellow:     #FFD700;
  --yellow-dark:#CC9900;
  --green:      #00B341;
  --red:        #E0001B;
  --white:      #FFFFFF;
  --near-white: #F7F9FC;
  --gray-100:   #EDF0F7;
  --gray-200:   #D6DCE8;
  --gray-400:   #9BA8BC;
  --gray-600:   #5A6A82;
  --gray-800:   #2D3748;
  --dark:       #0D1B2A;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-d:     'Montserrat', var(--font);
  --ff-head:    'Montserrat', var(--font);
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --shadow-blue: 0 4px 24px rgba(0,82,204,.35);
  --t: all .25s ease;
  --max: 1280px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-d);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--blue); text-decoration: none; transition: var(--t); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ── Section spacing ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

/* ── Section labels & titles ── */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo img { height: 42px; width: auto; }
.logo-text {
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -.02em;
}
.logo-text span { font-weight: 800; }

/* Main Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--t);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

/* Header CTA buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-login {
  color: var(--white) !important;
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 20px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.btn-login:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
}
.btn-register {
  color: var(--blue-darker) !important;
  background: var(--yellow);
  font-size: .9rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: var(--r-sm);
  transition: var(--t);
  white-space: nowrap;
}
.btn-register:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,215,0,.4);
}

/* Mobile tracker CTA — shown only on mobile */
.mobile-tracker-btn { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 1.4rem;
  padding: 5px 10px;
  cursor: pointer;
  line-height: 1;
  transition: var(--t);
}
.hamburger:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--blue-pale);
  padding: 12px 0;
  font-size: .85rem;
  color: var(--gray-600);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 8px; color: var(--gray-400); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--blue-darker);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  color: var(--blue-darker);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,215,0,.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   HERO — BASE
══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue) 50%, var(--blue-light) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero h1 { margin-bottom: 20px; color: var(--white); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 14px; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img,
.hero-visual svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
  border-radius: var(--r-lg);
}

/* Hero full-width variant */
.hero-full { text-align: center; }
.hero-full .hero-content { max-width: 760px; margin: 0 auto; }
.hero-full .hero-inner { grid-template-columns: 1fr; gap: 0; }

/* Hero dark */
.hero-dark {
  background: linear-gradient(135deg, #000D1A 0%, #001A40 50%, #002966 100%);
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--blue-dark);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 8px; }
.stat-number {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 6px; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ══════════════════════════════════════════
   CARD COMPONENTS
══════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--t);
  border: 1px solid var(--gray-100);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--blue-pale);
}
.card-body { padding: 24px; }
.card-tag {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 8px;
}
.card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card p { color: var(--gray-600); font-size: .9rem; margin-bottom: 0; }

/* Odds card */
.odds-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  padding: 20px;
  transition: var(--t);
}
.odds-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.odds-sport {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.odds-match { font-weight: 600; font-size: 1rem; margin-bottom: 14px; }
.odds-row { display: flex; gap: 8px; }
.odds-btn {
  flex: 1;
  text-align: center;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: inherit;
}
.odds-btn:hover { background: var(--blue); color: var(--white); }
.odds-btn span { display: block; font-size: .72rem; font-weight: 400; color: var(--gray-600); }
.odds-btn:hover span { color: rgba(255,255,255,.75); }

/* Feature card */
.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  transition: var(--t);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-pale); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h4 { margin-bottom: 10px; }
.feature-card p { color: var(--gray-600); font-size: .92rem; margin-bottom: 0; }

/* ══════════════════════════════════════════
   GRID LAYOUTS
══════════════════════════════════════════ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

/* ══════════════════════════════════════════
   TABLES
══════════════════════════════════════════ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); }
.data-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: .92rem;
}
.data-table thead th {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.data-table thead th:first-child { border-radius: 12px 0 0 0; }
.data-table thead th:last-child { border-radius: 0 12px 0 0; }
.data-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: var(--t); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--blue-pale); }
.data-table td { padding: 14px 18px; color: var(--gray-800); vertical-align: middle; }
.data-table td:first-child { font-weight: 600; }
.data-table .badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.badge-green { background: rgba(0,179,65,.12); color: var(--green); }
.badge-blue  { background: var(--blue-pale); color: var(--blue); }
.badge-yellow{ background: rgba(255,215,0,.2); color: #7A6000; }
.badge-red   { background: rgba(224,0,27,.1); color: var(--red); }

/* ══════════════════════════════════════════
   CHART CONTAINERS
══════════════════════════════════════════ */
.chart-container {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.chart-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.chart-sub {
  font-size: .82rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.chart-wrap { position: relative; }
.chart-wrap canvas { max-height: 300px; }

/* CSS bar chart */
.css-chart { margin-top: 16px; }
.css-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.css-bar-label { font-size: .85rem; font-weight: 600; width: 100px; flex-shrink: 0; }
.css-bar-track {
  flex: 1;
  height: 28px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  min-width: 80px;
}
.css-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 6px;
  transition: width 1s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.css-bar-fill span { color: var(--white); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.css-bar-val { font-size: .9rem; font-weight: 700; color: var(--blue); width: 50px; flex-shrink: 0; }

/* Donut via conic gradient */
.donut-wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.donut {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.donut-center-num { font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1; }
.donut-center-txt { font-size: .72rem; color: var(--gray-600); }
.donut-legend { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 10px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-name { font-size: .88rem; color: var(--gray-800); }
.legend-pct  { font-size: .88rem; font-weight: 700; color: var(--dark); margin-left: auto; }

/* ══════════════════════════════════════════
   BONUS / PROMO CARDS
══════════════════════════════════════════ */
.bonus-highlight {
  background: linear-gradient(135deg, var(--blue-darker), var(--blue-dark));
  border-radius: var(--r-lg);
  padding: 50px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bonus-highlight::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,215,0,.08);
  border-radius: 50%;
}
.bonus-amount {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: var(--font-d);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.bonus-label { font-size: 1.2rem; color: rgba(255,255,255,.8); margin-bottom: 30px; }
.bonus-features { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.bonus-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.bonus-feat::before { content: '✓'; color: var(--yellow); font-weight: 700; }

.promo-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--t);
}
.promo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.promo-card-header {
  background: var(--blue);
  padding: 20px 24px;
  color: var(--white);
}
.promo-card-header .amount { font-size: 2rem; font-weight: 800; color: var(--yellow); }
.promo-card-body { padding: 24px; }
.promo-card-body p { color: var(--gray-600); font-size: .9rem; }
.promo-terms { font-size: .78rem; color: var(--gray-400); margin-top: 14px; }

/* ══════════════════════════════════════════
   STEPS / HOW IT WORKS
══════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue-pale));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 72px; height: 72px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
  font-family: var(--font-d);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--blue-light);
  opacity: .4;
}
.step h4 { margin-bottom: 8px; }
.step p  { color: var(--gray-600); font-size: .9rem; margin: 0; }

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--t);
}
.faq-q:hover { background: var(--blue-pale); }
.faq-q[aria-expanded="true"] { background: var(--blue); color: var(--white); }
.faq-icon { font-size: 1.2rem; transition: transform .25s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--near-white);
  font-size: .95rem;
  color: var(--gray-800);
}
.faq-a.open {
  padding: 20px 24px;
  max-height: 400px;
}

/* ══════════════════════════════════════════
   AUTHOR BIO
══════════════════════════════════════════ */
.author-bio {
  display: flex;
  gap: 32px;
  background: linear-gradient(135deg, var(--blue-pale), var(--white));
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  align-items: flex-start;
}
.author-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid var(--blue);
  box-shadow: var(--shadow-blue);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { margin-bottom: 4px; font-size: 1.2rem; }
.author-role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.author-info p { color: var(--gray-600); font-size: .95rem; margin-bottom: 12px; }
.author-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.author-stat { text-align: center; }
.author-stat strong { display: block; font-size: 1.2rem; color: var(--blue); }
.author-stat span { font-size: .78rem; color: var(--gray-600); }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  border-radius: var(--r-xl);
  padding: 70px 60px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  background: rgba(255,215,0,.08);
  border-radius: 50%;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 500px; margin: 0; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════
   LIVE BADGE / INDICATORS
══════════════════════════════════════════ */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.form-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  padding: 60px 0;
}
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 44px;
}
.form-card-header {
  background: linear-gradient(135deg, var(--blue-darker), var(--blue));
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.form-card-header h1 { font-size: 1.8rem; margin-bottom: 8px; }
.form-card-header p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }
.form-card-body { padding: 36px 40px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--t);
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,204,.12); }
.form-control::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.form-check label { font-size: .88rem; color: var(--gray-600); }
.form-check a { color: var(--blue); }
.form-footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--gray-600); }
.form-footer a { font-weight: 600; }
.form-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--gray-400); font-size: .85rem; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.input-with-icon { position: relative; }
.input-with-icon .form-control { padding-left: 44px; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; }
.form-error { color: var(--red); font-size: .82rem; margin-top: 5px; display: none; }
.form-control.is-error { border-color: var(--red); }
.form-control.is-error + .form-error { display: block; }

/* Password strength */
.pw-strength { margin-top: 8px; display: flex; gap: 4px; }
.pw-bar { flex: 1; height: 4px; background: var(--gray-200); border-radius: 2px; transition: var(--t); }
.pw-bar.weak   { background: var(--red); }
.pw-bar.medium { background: var(--warning, #FF9500); }
.pw-bar.strong { background: var(--green); }

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  padding: 24px;
}
.sidebar-widget h4 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-pale);
  font-size: 1rem;
}
.sidebar-nav ul { display: flex; flex-direction: column; gap: 6px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--gray-800);
  font-size: .9rem;
  transition: var(--t);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   LIVE SECTION SPECIFIC
══════════════════════════════════════════ */
.live-events { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.live-event {
  background: var(--near-white);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 4px solid var(--red);
}
.live-event-sport { font-size: .78rem; font-weight: 700; text-transform: uppercase; color: var(--gray-600); }
.live-event-teams { font-weight: 600; font-size: .95rem; }
.live-event-score { font-size: 1.1rem; font-weight: 800; color: var(--blue); white-space: nowrap; }
.live-event-time { font-size: .82rem; color: var(--red); font-weight: 700; margin-left: auto; white-space: nowrap; }

/* ══════════════════════════════════════════
   APP PAGE SPECIFIC
══════════════════════════════════════════ */
.app-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.phone-mockup {
  width: 280px;
  flex-shrink: 0;
  position: relative;
}
.phone-mockup svg { width: 100%; height: auto; }
.download-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-size: .95rem;
  transition: var(--t);
}
.dl-btn:hover { background: var(--gray-800); transform: translateY(-2px); }
.dl-btn-icon { font-size: 2rem; }
.dl-btn-text strong { display: block; font-size: 1.05rem; font-weight: 700; }
.dl-btn-text span { font-size: .75rem; color: rgba(255,255,255,.7); }
.app-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.rating-num { font-size: 1.1rem; font-weight: 700; }
.rating-count { font-size: .85rem; color: var(--gray-600); }

/* ══════════════════════════════════════════
   RESPONSIBLE GAMBLING
══════════════════════════════════════════ */
.rg-bar {
  background: var(--gray-100);
  padding: 16px 0;
  text-align: center;
}
.rg-bar p {
  font-size: .82rem;
  color: var(--gray-600);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { margin-bottom: 16px; display: block; font-size: 1.6rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--t);
  text-decoration: none;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--t);
}
.footer-col a:hover { color: var(--yellow); padding-left: 6px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  line-height: 1.8;
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* ══════════════════════════════════════════
   MISC UTILITIES
══════════════════════════════════════════ */
.text-blue   { color: var(--blue); }
.text-yellow { color: var(--yellow-dark); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-gray   { color: var(--gray-600); }
.text-white  { color: var(--white); }
.bg-blue     { background: var(--blue); }
.bg-pale     { background: var(--blue-pale); }
.bg-dark     { background: var(--dark); }
.bg-near-white { background: var(--near-white); }
.fw-700      { font-weight: 700; }
.fw-800      { font-weight: 800; }
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-24 { gap: 24px; }
.highlight { color: var(--yellow); }
.highlight-blue { color: var(--blue); }
.separator { border: none; border-top: 1px solid var(--gray-100); margin: 40px 0; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  background: var(--blue-pale);
  color: var(--blue);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  background: rgba(0,82,204,.08);
  color: var(--blue);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.15); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.anim-fade { animation: fadeUp .6s ease forwards; }
.anim-right { animation: slideRight .6s ease forwards; }
.float { animation: float 3s ease-in-out infinite; }

/* ══════════════════════════════════════════
   RESPONSIVE — 1200px
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-sidebar { grid-template-columns: 1fr; }
  .grid-2-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .app-hero-inner { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 768px (MOBILE)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .btn-login,
  .header-cta .btn-register { display: none; }
  .mobile-tracker-btn { display: flex; }
  .hamburger { display: block; }

  .mobile-nav-open .main-nav {
    display: block;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--blue-darker);
    padding: 20px 24px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav-open .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav-open .main-nav a { padding: 12px 16px; font-size: 1rem; }
  .mobile-nav-open .header-cta { display: flex; flex-direction: column; padding: 16px 24px; gap: 10px; }
  .mobile-nav-open .header-cta .btn-login,
  .mobile-nav-open .header-cta .btn-register { display: flex; justify-content: center; }

  .mobile-tracker-btn a {
    background: var(--yellow);
    color: var(--blue-darker) !important;
    font-weight: 700;
    font-size: .85rem;
    padding: 8px 18px;
    border-radius: var(--r-sm);
    white-space: nowrap;
  }

  .section { padding: 50px 0; }
  .section-lg { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { padding: 60px 0 50px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-highlight { padding: 30px 24px; }
  .bonus-amount { font-size: 3rem; }

  .steps { grid-template-columns: 1fr; }

  .author-bio { flex-direction: column; align-items: center; text-align: center; padding: 28px; }
  .author-stats { justify-content: center; }

  .table-wrap {
    margin-left: -24px;
    width: calc(100% + 48px);
    border-radius: 0;
  }
  .data-table thead th:first-child,
  .data-table thead th:last-child { border-radius: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
  .donut-wrap { flex-direction: column; align-items: center; }

  .css-bar-label { width: 80px; font-size: .78rem; }

  .chart-wrap canvas { max-height: 220px !important; }

  .bonus-features { flex-direction: column; gap: 10px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }
  .hero { padding: 50px 0 40px; }
  .form-card-body { padding: 28px 24px; }
  .form-card-header { padding: 30px 24px; }
}

/* ═══════════════════════════════════════════════
   ADDITIONS — Accessibility · Forms · Utilities
   ═══════════════════════════════════════════════ */

/* ── Skip-to-content (WCAG 2.4.1) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 0 0 var(--r-md) 0;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Focus visible (WCAG 2.1 AA — 1.4.11 / 2.4.7) ── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.85);
  outline-offset: 3px;
}

/* ── Native input / select / textarea ── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,82,204,.12);
}
input::placeholder,
textarea::placeholder { color: var(--gray-400); }
input.is-error, select.is-error, textarea.is-error { border-color: var(--red); }
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: auto;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
textarea { resize: vertical; min-height: 100px; }

/* ── Auth form layout ── */
.form-card-wide { max-width: 600px; }
.form-logo { text-align: center; margin-bottom: 28px; }
.form-logo img { margin: 0 auto; }
.form-title { font-size: 1.8rem; text-align: center; margin-bottom: 8px; font-family: var(--font-d); }
.form-sub { text-align: center; color: var(--gray-600); font-size: .92rem; margin-bottom: 28px; }
.form-link { color: var(--blue); font-weight: 600; }
.form-link:hover { color: var(--blue-dark); text-decoration: underline; }
.auth-form { display: flex; flex-direction: column; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; display: block; }
.form-error { color: var(--red); font-size: .82rem; margin-top: 5px; display: block; min-height: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-split { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--gray-600); cursor: pointer; line-height: 1.5; }
.checkbox-label input { margin-top: 2px; }
.form-submit-btn { margin-top: 8px; width: 100%; justify-content: center; }
.form-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--gray-400); font-size: .85rem; }
.form-divider::before,
.form-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.form-footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--gray-600); }

/* ── Password strength ── */
.pw-hint { font-size: .8rem; color: var(--gray-600); margin-top: 6px; }
.pw-strength { margin-top: 8px; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
#pwBar { height: 100%; border-radius: 3px; width: 0; transition: width .3s ease, background .3s ease; }

/* ── Register step indicators ── */
.reg-steps { display: flex; gap: 4px; margin-bottom: 32px; background: var(--gray-100); border-radius: 50px; padding: 4px; }
.reg-step { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--gray-400); padding: 10px 6px; border-radius: 50px; transition: var(--t); cursor: default; }
.reg-step.active { background: var(--blue); color: var(--white); }
.reg-step span { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; background: rgba(0,0,0,.08); flex-shrink: 0; }
.reg-step.active span { background: rgba(255,255,255,.2); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-nav-btns { display: flex; gap: 12px; margin-top: 8px; }
.form-nav-btns .btn { flex: 1; justify-content: center; }

/* ── Mobile nav overlay ── */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
body.mobile-nav-open .mobile-nav-overlay { display: block; }

/* ── Additional utilities ── */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-24 { margin-bottom: 24px; }
.mb-64 { margin-bottom: 64px; }

/* ── Affiliate disclosure ── */
.affiliate-note { font-size: .78rem; color: var(--gray-400); text-align: center; padding: 8px 0; border-top: 1px solid var(--gray-100); margin-top: 16px; line-height: 1.6; }

/* ── Table caption ── */
caption { padding: 10px 18px; font-size: .82rem; font-weight: 700; color: var(--gray-600); text-align: left; caption-side: top; }

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ── Print styles ── */
@media print {
  .site-header, .rg-bar, .hamburger, .mobile-tracker-btn,
  .cta-banner, .download-btns, .site-footer, .breadcrumb,
  .mobile-nav-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .data-table { border-collapse: collapse; width: 100%; }
  .data-table th, .data-table td { border: 1px solid #ccc; padding: 6pt 8pt; }
  .table-wrap { overflow: visible; }
  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; page-break-after: avoid; }
  h3 { font-size: 13pt; page-break-after: avoid; }
}

/* ── High contrast / forced-colours (WCAG 2.1 AA) ── */
@media (forced-colors: active) {
  .btn, .btn-primary, .btn-yellow, .btn-outline { border: 2px solid ButtonText; }
  .live-badge, .odds-card, .feature-card, .faq-item { border: 1px solid ButtonText; }
}

/* ── Form responsive fixes ── */
@media (max-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px !important; }
  .reg-steps { flex-wrap: wrap; border-radius: var(--r-md); }
  .form-nav-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .form-card { padding: 28px 16px !important; }
  .reg-step em { display: none; }
}
