:root {
  --bg: #000a1f;
  --panel: #0b1735;
  --panel-2: #0f1f47;
  --neutral-2: #162a53;
  --neutral-4: #465c8b;
  --text: #ffffff;
  --muted: #a8b3cf;
  --orange: #f5a524;
  --orange-grad: linear-gradient(135deg, #f7b733, #e8871e);
  --blue: #1f5eff;
  --blue-grad: linear-gradient(135deg, #2b6bff, #1743c9);
  --red-grad: linear-gradient(135deg, #e53935, #8e1b1b);
  --radius: 12px;
  --radius-sm: 8px;
  --topbar-h: 64px;
  --sidebar-w: 232px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--font); font-size: 16px; line-height: 1.55; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; scroll-padding-top: calc(var(--topbar-h) + 16px); }
body { margin: 0; background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: #8fb3ff; }
a:hover { color: #fff; }
h1, h2, h3 { line-height: 1.2; font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-top: 1.6em; }
h3 { font-size: 1.125rem; margin-top: 1.2em; }
p, ul, ol { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; margin: 0 0 1.25em; font-size: .95rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--neutral-2); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
.table-wrap { overflow-x: auto; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--orange); color: #1b1200; padding: 8px 12px; border-radius: var(--radius-sm); font-weight: 700; }
.skip-link:focus { left: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border: 0; border-radius: var(--radius-sm); font: inherit; font-weight: 700; padding: 10px 20px; cursor: pointer; text-decoration: none; color: #fff; transition: transform .15s, filter .15s; white-space: nowrap; }
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }
.btn-orange { background: var(--orange-grad); color: #1b1200; }
.btn-orange:hover { color: #1b1200; }
.btn-blue { background: var(--blue-grad); }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn[disabled] { cursor: default; }
.btn[disabled]:hover { filter: none; transform: none; }

/* Logo */
.logo { display: inline-flex; align-items: center; text-decoration: none; color: #fff; }
.logo-img { height: 40px; width: auto; display: block; }
.footer .logo-img { height: 30px; }
.wordmark { display: inline-flex; align-items: center; font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; line-height: 1; }
.wm-8 { display: inline-flex; align-items: center; justify-content: center; width: 1.3em; height: 1.3em; margin: 0 .06em; border-radius: .35em; background: var(--orange-grad); color: #1b1200; }
.wm-io { color: var(--muted); font-weight: 600; font-size: .8em; }

/* Top bar */
.topbar { position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h); display: flex; align-items: center; gap: 16px; padding: 0 20px; background: rgba(0, 10, 31, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--neutral-2); z-index: 50; }
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; border: 0; border-radius: var(--radius-sm); background: var(--neutral-2); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }
.topnav { display: flex; gap: 4px; margin-left: 16px; }
.topnav-link { color: #fff; text-decoration: none; padding: 8px 16px; border-radius: var(--radius-sm); font-weight: 600; }
.topnav-link:hover { background: var(--neutral-2); color: #fff; }
.topnav-link.is-active { background: var(--blue-grad); }
.topbar-actions { margin-left: auto; display: flex; gap: 8px; }

/* Layout */
.layout { display: flex; padding-top: var(--topbar-h); min-height: 100vh; }
.sidebar { position: fixed; top: var(--topbar-h); bottom: 0; left: 0; width: var(--sidebar-w); overflow-y: auto; padding: 16px; background: var(--bg); border-right: 1px solid var(--neutral-2); z-index: 40; }
.side-tiles { display: grid; gap: 8px; margin-bottom: 16px; }
.side-tile { display: block; padding: 14px 16px; border-radius: var(--radius-sm); color: #fff; font-weight: 700; text-decoration: none; }
.side-tile-sports { background: var(--blue-grad); }
.side-tile-casino { background: var(--red-grad); }
.side-nav { list-style: none; margin: 0; padding: 0; }
.side-nav a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); color: #dfe6f7; text-decoration: none; font-weight: 600; }
.side-nav a:hover { background: var(--neutral-2); color: #fff; }
.side-nav a.is-active { background: var(--neutral-2); color: #fff; box-shadow: inset 3px 0 0 var(--orange); }
.side-divider { height: 1px; background: var(--neutral-2); margin: 12px 0; }
.side-nav-secondary a { color: var(--muted); font-weight: 500; }
.backdrop { position: fixed; inset: var(--topbar-h) 0 0 0; background: rgba(0, 0, 0, .6); z-index: 39; }
.main { flex: 1; min-width: 0; margin-left: var(--sidebar-w); padding: 24px; }
.main > * { max-width: 1240px; margin-left: auto; margin-right: auto; }

/* Breadcrumbs and page header */
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 12px; font-size: .875rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--neutral-4); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.page-header { margin-bottom: 20px; }
.page-updated, .article-meta { color: var(--muted); font-size: .9rem; margin: 0; }
.hero-img { width: 100%; border-radius: var(--radius); margin-bottom: 24px; }
.image-credit { margin: -16px 0 24px; color: var(--muted); font-size: .8rem; }

/* Prose */
.prose { max-width: none; }
.prose-home { max-width: none; }
.prose h2 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .35em; }
.prose strong { color: #fff; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; padding: 32px; border-radius: var(--radius); background: radial-gradient(120% 120% at 0% 0%, #1a2e6b 0%, var(--panel) 45%, #06112d 100%); margin-bottom: 24px; }
.hero-sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 20px; }
.hero-art { width: 100%; border-radius: var(--radius); }
.hero-banner { position: relative; display: block; overflow: hidden; min-height: 440px; padding: 0; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 10, 31, .92) 0%, rgba(0, 10, 31, .82) 34%, rgba(0, 10, 31, .5) 58%, rgba(0, 10, 31, .08) 82%, rgba(0, 10, 31, 0) 100%); }
.hero-banner .hero-copy { position: relative; max-width: 540px; margin: 36px; padding: 32px 36px; background: rgba(2, 12, 40, .72); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .08); border-radius: 14px; box-shadow: 0 12px 32px rgba(0, 0, 0, .35); }
.hero-banner .hero-copy h1, .hero-banner .hero-sub { text-shadow: 0 2px 12px rgba(0, 10, 31, .8); }
.hero-banner .hero-copy h1 { color: #fff; }
.hero-banner .hero-sub { color: #f1f4fb; }

/* Feature cards */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.feature-card { display: flex; flex-direction: column; gap: 6px; padding: 22px; min-height: 150px; border-radius: var(--radius); color: #fff; text-decoration: none; transition: transform .15s; }
.feature-card:hover { transform: translateY(-2px); color: #fff; }
.feature-kicker { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.feature-title { font-size: 1.35rem; font-weight: 800; }
.feature-text { opacity: .9; }

/* Sections and tiles */
.home-section { margin-bottom: 32px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.section-head h2 { margin: 0; font-size: 1.25rem; }
.section-link { color: #8fb3ff; text-decoration: none; font-weight: 600; font-size: .9rem; }
.tile-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.tile { display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; min-height: 140px; padding: 14px; border-radius: var(--radius); color: #fff; text-decoration: none; transition: transform .15s; }
.tile:hover { transform: translateY(-2px); color: #fff; }
.tile-title { font-weight: 800; font-size: 1.05rem; }
.tile-sub { font-size: .8rem; opacity: .85; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.chip { padding: 8px 14px; border-radius: 999px; background: var(--neutral-2); color: #dfe6f7; font-weight: 600; font-size: .9rem; }
.chip-muted { background: transparent; border: 1px solid var(--neutral-2); color: var(--muted); font-weight: 500; }
.chips-label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 14px 0 8px; }
.chips-label:first-of-type { margin-top: 0; }

/* Tone gradients */
.tone-blue { background: var(--blue-grad); }
.tone-purple { background: linear-gradient(135deg, #7b2ff7, #4a148c); }
.tone-orange { background: var(--orange-grad); color: #1b1200; }
.tone-orange:hover { color: #1b1200; }
.tone-red { background: var(--red-grad); }
.tone-teal { background: linear-gradient(135deg, #0b7583, #00695c); }
.tone-navy { background: linear-gradient(135deg, #1e3a8a, #0b1735); }
.tone-pink { background: linear-gradient(135deg, #c2185b, #880e4f); }
.tone-green { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.tone-yellow { background: linear-gradient(135deg, #fdd835, #f57f17); color: #1b1200; }
.tone-yellow:hover { color: #1b1200; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card { background: var(--panel); border: 1px solid var(--neutral-2); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.news-card-img img { width: 100%; }
.news-card-body { padding: 14px 16px 18px; }
.news-card time { color: var(--muted); font-size: .8rem; }
.news-card-title { display: block; margin: 6px 0 8px; font-size: 1.05rem; font-weight: 700; line-height: 1.2; color: #fff; text-decoration: none; }
.news-card-title:hover { color: var(--orange); }
.news-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.more-news, .related, .sources, .faq { margin-top: 32px; }

/* FAQ */
.faq details { background: var(--panel); border: 1px solid var(--neutral-2); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 10px 0 0; color: var(--muted); }

/* Footer */
.footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--neutral-2); color: var(--muted); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 24px; }
.footer-legal { font-size: .8rem; margin: 12px 0 0; }
.footer-title { color: #fff; font-weight: 700; margin: 0 0 10px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 28px; padding: 20px 0 8px; border-top: 1px solid var(--neutral-2); }
.footer-bottom p { margin: 0; }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; font-weight: 800; color: #fff; }
.footer-social { flex-basis: 100%; }

/* Responsive */
@media (max-width: 1023px) {
  .menu-toggle { display: inline-flex; }
  .topnav { display: none; }
  .sidebar { transform: translateX(-100%); visibility: hidden; transition: transform .2s ease, visibility 0s linear .2s; }
  body.nav-open .sidebar { transform: none; visibility: visible; transition: transform .2s ease, visibility 0s; }
  .main { margin-left: 0; padding: 16px; }
  .tile-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; padding: 24px; }
  .hero-banner { min-height: 380px; padding: 0; }
  .hero-banner::before { background: linear-gradient(180deg, rgba(0, 10, 31, .92) 0%, rgba(0, 10, 31, .7) 55%, rgba(0, 10, 31, .35) 100%); }
  .hero-banner .hero-copy { margin: 20px; padding: 24px 22px; max-width: none; }
}
@media (max-width: 639px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-banner { display: grid; min-height: 0; background: var(--panel); }
  .hero-banner::before { display: none; }
  .hero-banner .hero-bg { position: static; width: 100%; height: auto; order: 2; }
  .hero-banner .hero-copy { order: 1; margin: 0; padding: 24px 20px 20px; background: none; -webkit-backdrop-filter: none; backdrop-filter: none; border: 0; border-radius: 0; box-shadow: none; }
  .hero-banner .hero-copy h1, .hero-banner .hero-sub { text-shadow: none; }
  .topbar { gap: 10px; padding: 0 12px; }
  .topbar-actions .btn-sm { padding: 8px 10px; }
  .logo-img { height: 32px; }
  .main { padding: 12px; }
}
