/* ============ TOKENS ============ */
:root {
  --midnight: #0B1E3F;
  --midnight-2: #0D2447;
  --midnight-3: #102B55;
  --ice: #F5F7FA;
  --ice-2: #FFFFFF;
  --ice-soft: #E5EAF2;
  --orange: #F4791F;
  --orange-2: #FF8C3A;
  --orange-soft: rgba(244, 121, 31, 0.12);
  --graphite: #2A2F3A;
  --graphite-2: #3A4150;
  --graphite-3: #4A5160;
  --line: rgba(245, 247, 250, 0.10);
  --line-strong: rgba(245, 247, 250, 0.18);
  --shadow-1: 0 8px 24px rgba(7, 14, 30, 0.35);
  --shadow-2: 0 18px 48px rgba(7, 14, 30, 0.55);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1200px;
  --header-h: 76px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ice);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea { font: inherit; color: inherit; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, #091833 0%, var(--midnight) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.section-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ice);
}
.section-sub {
  color: rgba(245, 247, 250, 0.70);
  font-size: 17px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 30, 63, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ice);
}
.brand-tagline {
  font-size: 11px;
  color: rgba(245, 247, 250, 0.60);
  letter-spacing: 0.04em;
}
.primary-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.primary-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.78);
  transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover {
  color: var(--ice);
  background: rgba(245, 247, 250, 0.06);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ AGE PILL ============ */
.age-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(244, 121, 31, 0.05);
}
.age-pill-dot {
  background: var(--orange);
  color: var(--midnight);
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.age-pill-text {
  color: rgba(245, 247, 250, 0.85);
  letter-spacing: 0.02em;
}
.age-pill-lg {
  padding: 8px 16px 8px 8px;
  font-size: 13px;
}
.age-pill-lg .age-pill-dot {
  padding: 5px 10px;
  font-size: 12px;
}

/* ============ NAV TOGGLE ============ */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--line);
  background: rgba(11, 30, 63, 0.95);
}
.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: rgba(245, 247, 250, 0.85);
}
.mobile-nav.is-open { display: flex; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--orange);
  color: var(--midnight);
  box-shadow: 0 8px 24px rgba(244, 121, 31, 0.30);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(244, 121, 31, 0.40);
}
.btn-ghost {
  background: rgba(245, 247, 250, 0.06);
  color: var(--ice);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(245, 247, 250, 0.12);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--midnight);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 121, 31, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(16, 43, 85, 0.85) 0%, transparent 50%),
    var(--midnight);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 247, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244, 121, 31, 0.10);
  border: 1px solid rgba(244, 121, 31, 0.25);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 121, 31, 0.20);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 121, 31, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(244, 121, 31, 0); }
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--ice);
}
.lead {
  font-size: 19px;
  color: rgba(245, 247, 250, 0.78);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta { margin-top: 8px; }

/* ============ HERO PANEL ============ */
.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-panel-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tab {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 247, 250, 0.55);
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(245, 247, 250, 0.04);
}
.tab-active {
  color: var(--midnight);
  background: var(--ice);
}
.hero-panel-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(245, 247, 250, 0.80);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D27D;
  box-shadow: 0 0 0 3px rgba(52, 210, 125, 0.20);
  animation: pulse-green 1.4s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 210, 125, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(52, 210, 125, 0); }
}
.match-card {
  background: rgba(7, 14, 30, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(245, 247, 250, 0.03);
  transition: background 0.2s;
}
.match-row:hover { background: rgba(245, 247, 250, 0.06); }
.match-draw { background: rgba(244, 121, 31, 0.06); }
.team {
  display: flex;
  align-items: center;
  gap: 12px;
}
.team-crest svg {
  width: 32px;
  height: 32px;
}
.team-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ice);
}
.team-name.muted {
  color: rgba(245, 247, 250, 0.65);
}
.match-odd {
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  background: rgba(244, 121, 31, 0.10);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  min-width: 64px;
  text-align: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-stat {
  text-align: center;
  padding: 14px 8px;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.hero-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(245, 247, 250, 0.65);
  margin-top: 4px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ============ INSIGHTS ============ */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.05) 0%, rgba(245, 247, 250, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 121, 31, 0.45);
  background: linear-gradient(180deg, rgba(244, 121, 31, 0.06) 0%, rgba(245, 247, 250, 0.02) 100%);
}
.insight-icon {
  width: 64px;
  height: 64px;
  background: rgba(244, 121, 31, 0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.insight-icon svg { width: 40px; height: 40px; }
.insight-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ice);
}
.insight-card p {
  color: rgba(245, 247, 250, 0.72);
  font-size: 15px;
  margin-bottom: 24px;
}
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.insight-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.insight-link:hover svg { transform: translateX(4px); }

/* ============ RANKINGS ============ */
.ranking-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ranking-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.05) 0%, rgba(245, 247, 250, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.ranking-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), transparent);
  opacity: 0.6;
}
.ranking-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 121, 31, 0.45);
  box-shadow: var(--shadow-1);
}
.ranking-position-wrap {
  text-align: center;
}
.ranking-position {
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ranking-position-label {
  display: block;
  font-size: 10px;
  color: rgba(245, 247, 250, 0.55);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 4px;
  text-transform: uppercase;
}
.ranking-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.ranking-logo {
  width: 96px;
  height: 96px;
  background: rgba(7, 14, 30, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}
.ranking-logo svg { width: 100%; height: auto; }
.ranking-info {
  min-width: 0;
}
.ranking-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.ranking-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--ice);
  letter-spacing: -0.01em;
}
.ranking-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(244, 121, 31, 0.15);
  color: var(--orange);
  border: 1px solid rgba(244, 121, 31, 0.35);
}
.ranking-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ranking-score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  color: var(--orange);
  font-size: 18px;
}
.ranking-score-max {
  font-size: 13px;
  color: rgba(245, 247, 250, 0.5);
  font-weight: 500;
}
.ranking-stars {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 14px;
}
.ranking-stars .empty { color: rgba(245, 247, 250, 0.18); }
.ranking-desc {
  color: rgba(245, 247, 250, 0.72);
  font-size: 14px;
  margin-bottom: 12px;
  max-width: 56ch;
}
.ranking-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ranking-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 247, 250, 0.06);
  color: rgba(245, 247, 250, 0.78);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ranking-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.ranking-note {
  text-align: center;
  font-size: 13px;
  color: rgba(245, 247, 250, 0.55);
  margin-top: 32px;
}

/* ============ MARKETS ============ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.market-card {
  padding: 28px;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.market-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 121, 31, 0.40);
  background: rgba(244, 121, 31, 0.04);
}
.market-icon {
  width: 56px;
  height: 56px;
  background: rgba(244, 121, 31, 0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.market-icon svg { width: 36px; height: 36px; }
.market-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 8px;
}
.market-card p {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.70);
  line-height: 1.55;
}

/* ============ COMPARE TABLE ============ */
.compare-wrap {
  overflow-x: auto;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  font-weight: 700;
  color: var(--ice);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  background: rgba(7, 14, 30, 0.4);
}
.compare-table td:first-child {
  font-weight: 700;
  color: var(--ice);
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tbody tr {
  transition: background 0.2s;
}
.compare-table tbody tr:hover {
  background: rgba(244, 121, 31, 0.04);
}
.score-pill {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.score-pill.s-high {
  background: rgba(52, 210, 125, 0.12);
  color: #5BE6A0;
}
.score-pill.s-mid {
  background: rgba(244, 121, 31, 0.14);
  color: var(--orange);
}
.score-pill.s-low {
  background: rgba(245, 247, 250, 0.08);
  color: rgba(245, 247, 250, 0.75);
}

/* ============ TRUST ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.trust-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: rgba(244, 121, 31, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 44px; height: 44px; }
.trust-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.70);
}

/* ============ METHODOLOGY ============ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.method-row {
  padding: 24px 28px;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.method-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.method-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.method-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ice);
}
.method-row p {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.70);
  margin-bottom: 16px;
}
.method-bar {
  height: 6px;
  background: rgba(245, 247, 250, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.method-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: inherit;
  transition: width 0.8s ease;
}

/* ============ ABOUT ============ */
.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 {
  text-align: left;
  margin-bottom: 22px;
}
.about-copy .section-eyebrow {
  margin-bottom: 18px;
}
.about-copy .section-eyebrow::before,
.about-copy .section-eyebrow::after { display: none; }
.about-copy p {
  color: rgba(245, 247, 250, 0.78);
  font-size: 16px;
  margin-bottom: 16px;
}
.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(245, 247, 250, 0.85);
}
.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 121, 31, 0.20);
  flex-shrink: 0;
}
.about-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(244, 121, 31, 0.10) 0%, rgba(7, 14, 30, 0.30) 100%);
  border: 1px solid rgba(244, 121, 31, 0.25);
  border-radius: var(--radius-xl);
}
.about-stat {
  text-align: left;
  padding: 16px;
  background: rgba(7, 14, 30, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.about-stat-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(245, 247, 250, 0.70);
  margin-top: 8px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] {
  border-color: rgba(244, 121, 31, 0.35);
  background: rgba(244, 121, 31, 0.04);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ice);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-body {
  padding: 0 22px 20px;
  color: rgba(245, 247, 250, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ SAFER GAMBLING ============ */
.safer-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(244, 121, 31, 0.08) 0%, rgba(11, 30, 63, 0.6) 100%);
  border: 1px solid rgba(244, 121, 31, 0.30);
  border-radius: var(--radius-xl);
  align-items: center;
}
.safer-icon {
  width: 96px;
  height: 96px;
  background: rgba(7, 14, 30, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safer-icon svg { width: 60px; height: 60px; }
.safer-copy h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 12px;
}
.safer-copy p {
  color: rgba(245, 247, 250, 0.78);
  margin-bottom: 18px;
  max-width: 64ch;
}
.safer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.safer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: rgba(7, 14, 30, 0.6);
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 600;
  color: var(--ice);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.safer-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--midnight);
  transform: translateY(-1px);
}

/* ============ CONTACT FORM ============ */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 247, 250, 0.85);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea {
  padding: 12px 16px;
  background: rgba(7, 14, 30, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ice);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: rgba(7, 14, 30, 0.7);
}
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(245, 247, 250, 0.75);
  cursor: pointer;
}
.form-check input {
  margin-top: 4px;
  accent-color: var(--orange);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-status {
  font-size: 14px;
  color: var(--orange);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(180deg, var(--midnight) 0%, #060F22 100%);
  border-top: 1px solid var(--line);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-about {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.65);
  margin-bottom: 18px;
  max-width: 340px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ice);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: rgba(7, 14, 30, 0.55);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(245, 247, 250, 0.55);
}
.footer-disclaimer {
  max-width: 720px;
  text-align: right;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 30, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 86vh;
  background: linear-gradient(180deg, #122B58 0%, var(--midnight) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ice);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 247, 250, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(244, 121, 31, 0.25); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body {
  padding: 24px 26px 28px;
  overflow-y: auto;
  color: rgba(245, 247, 250, 0.80);
  font-size: 15px;
  line-height: 1.7;
}
.modal-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ice);
  margin: 18px 0 6px;
  letter-spacing: 0.01em;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 10px; }
body.no-scroll { overflow: hidden; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 56px; }
  .insight-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .ranking-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
  .ranking-position {
    text-align: left;
    font-size: 28px;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
  }
  .ranking-position-label {
    display: inline;
    margin-top: 0;
  }
  .ranking-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ranking-logo {
    width: 80px;
    height: 80px;
  }
  .ranking-actions {
    align-items: stretch;
  }
  .ranking-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .safer-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
    gap: 16px;
  }
  .safer-icon { margin: 0 auto; }
  .safer-links { justify-content: center; }
  .age-pill-text { display: none; }
  .header-actions .age-pill { padding: 4px 6px; }
  .brand-tagline { display: none; }
  .contact-form { padding: 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 32px; }
  .lead { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat:last-child { grid-column: span 2; }
  .insight-card { padding: 24px; }
  .market-card { padding: 22px; }
}
