:root {
  --bg: #07152f;
  --paper: #ffffff;
  --ink: #142034;
  --muted: #667085;
  --gold: #f6c85f;
  --gold-dark: #c88c25;
  --navy: #121d43;
  --blue: #203a77;
  --green: #17825e;
  --line: rgba(246, 200, 95, 0.24);
  --shadow: 0 24px 62px rgba(7, 21, 47, 0.2);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.72;
  background: linear-gradient(180deg, #07152f 0, #f8f9fc 44%, #ffffff 100%);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.9rem, 2.75vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(1.62rem, 2.5vw, 2.42rem);
  line-height: 1.12;
  letter-spacing: 0;
}
p { color: var(--muted); font-size: 1.03rem; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 21, 47, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 950; }
.brand span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff1b8, var(--gold));
  font-size: 0.82rem;
}
.brand strong { font-size: 1.08rem; }
.nav { display: flex; gap: 16px; color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 850; }
.top-cta,
.primary,
.mobile-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--navy);
  font-weight: 950;
  text-align: center;
  background: linear-gradient(135deg, #fff1b8, var(--gold));
  box-shadow: 0 14px 30px rgba(246, 200, 95, 0.25);
}
.mobile-cta { display: none; padding: 12px 18px; border-bottom: 1px solid #e9edf5; background: #fff; }
.mobile-cta a { width: 100%; }
.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.hero-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 21, 47, 0.92), rgba(7, 21, 47, 0.66) 48%, rgba(7, 21, 47, 0.12));
}
.hero-content { padding: 92px 0 80px; }
.hero p { max-width: 780px; color: rgba(255, 255, 255, 0.88); }
.kicker,
.label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.toc {
  padding: 30px 0;
  border-bottom: 1px solid #e8edf5;
  background: #fff;
}
.toc-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.toc .label { color: var(--gold-dark); }
.toc-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.toc-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 900;
  background: #fff;
}
.section { padding: 68px 0; }
.article { max-width: 930px; }
.intro { background: #f8f9fc; }
.sports { background: #fff; }
.split,
.game-layout,
.two-col {
  display: grid;
  gap: 44px;
  align-items: center;
}
.split { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr); }
.game-layout { grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.note {
  padding: 24px;
  border: 1px solid #e1e7f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 21, 47, 0.08);
}
.note strong { display: block; margin-bottom: 10px; color: var(--navy); font-size: 1.15rem; }
.games {
  border-block: 1px solid #e8edf5;
  background: linear-gradient(135deg, rgba(246, 200, 95, 0.12), rgba(255, 255, 255, 0.78));
}
.image-panel {
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.image-panel img { aspect-ratio: 16 / 10; object-fit: cover; }
.account { background: #fff; }
.mobile { border-top: 1px solid #e8edf5; background: #f8f9fc; }
.footer {
  padding: 30px 0;
  border-top: 1px solid #e8edf5;
  background: #fff;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer strong { color: var(--navy); }
@media (max-width: 1000px) {
  .nav,
  .site-header .top-cta { display: none; }
  .mobile-cta { position: sticky; top: 72px; z-index: 45; display: block; }
  .hero { min-height: auto; }
  .hero-content { padding: 76px 0 64px; }
  .toc-grid,
  .split,
  .game-layout,
  .two-col { grid-template-columns: 1fr; }
  .toc-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 66px; }
  .mobile-cta { top: 66px; }
  h1 { font-size: clamp(1.68rem, 6.8vw, 2.05rem); }
  h2 { font-size: clamp(1.42rem, 5.8vw, 1.88rem); }
  .hero-content { padding: 52px 0 48px; }
  .hero-bg { object-position: 58% center; }
  .toc-list { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .image-panel { border-width: 6px; border-radius: 14px; }
  .footer-inner { display: block; }
}
