:root {
  --bg: #f8f6f1;
  --paper: #ffffff;
  --ink: #162033;
  --muted: #6a6f7d;
  --navy: #09172d;
  --blue: #0e244c;
  --gold: #e9bd57;
  --teal: #1a8a80;
  --line: rgba(14, 36, 76, 0.16);
  --shadow: 0 24px 62px rgba(9, 23, 45, 0.18);
  --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, var(--bg), #fff 54%, #f4fbfa);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.9rem, 2.65vw, 2.8rem);
  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(9, 23, 45, 0.95);
  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, #fff0b6, var(--gold));
  font-size: 0.82rem;
}
.brand strong { font-size: 1.08rem; }
.nav { display: flex; gap: 16px; color: rgba(255, 255, 255, 0.84); 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: 10px;
  padding: 0 22px;
  color: var(--navy);
  font-weight: 950;
  text-align: center;
  background: linear-gradient(135deg, #fff0b6, var(--gold));
  box-shadow: 0 14px 30px rgba(233, 189, 87, 0.26);
}
.mobile-cta { display: none; padding: 12px 18px; border-bottom: 1px solid #e5e9f0; background: #fff; }
.mobile-cta a { width: 100%; }
.hero {
  position: relative;
  min-height: 650px;
  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(9, 23, 45, 0.92), rgba(9, 23, 45, 0.68) 48%, rgba(9, 23, 45, 0.12));
}
.hero-content { padding: 90px 0 78px; }
.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 #e7ebf2; background: #fff; }
.toc-grid { display: grid; grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.toc .label { color: var(--teal); }
.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 #dfe5ed;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 900;
  background: #fff;
}
.section { padding: 68px 0; }
.article { max-width: 940px; }
.intro { background: #f8f6f1; }
.sports, .account { background: #fff; }
.games { border-block: 1px solid #e7ebf2; background: linear-gradient(135deg, rgba(233, 189, 87, 0.14), rgba(26, 138, 128, 0.1)); }
.mobile { border-top: 1px solid #e7ebf2; background: #f8f6f1; }
.split, .game-grid, .two-col { display: grid; gap: 44px; align-items: center; }
.split { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr); }
.game-grid { grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1fr); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.note {
  padding: 24px;
  border: 1px solid #e1e6ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(9, 23, 45, 0.08);
}
.note strong { display: block; color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.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; }
.footer { padding: 30px 0; border-top: 1px solid #e7ebf2; 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: 74px 0 62px; }
  .toc-grid, .split, .game-grid, .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; }
}
