:root {
  --font-sans: "Bricolage Grotesque", sans-serif;
  --bg: #eef4ff;
  --bg-deep: #0e5cca;
  --bg-deep-2: #0a2f7d;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: rgba(7, 19, 46, 0.68);
  --border: rgba(255, 255, 255, 0.4);
  --border-strong: rgba(255, 255, 255, 0.58);
  --ink: #0a1f54;
  --ink-soft: rgba(10, 31, 84, 0.74);
  --ink-muted: rgba(10, 31, 84, 0.54);
  --white: #ffffff;
  --lime: #f1ff46;
  --lime-soft: #fbffc0;
  --orange: #ef8354;
  --cream: #efe6dd;
  --shadow-lg: 0 24px 80px rgba(7, 37, 98, 0.16);
  --shadow-md: 0 18px 55px rgba(7, 37, 98, 0.12);
  --shadow-sm: 0 10px 30px rgba(7, 37, 98, 0.08);
  --glass-blur: 14px;
  --glass-blur-soft: 10px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --announcement-bar-height: 46px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.72),
      transparent 16%
    ),
    linear-gradient(180deg, #0f5fcc 0%, #1c71d8 28%, #d8e8ff 66%, #f6f7fb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  max-width: 1220px !important;
}

#timeline > .container {
  max-width: min(1880px, calc(100vw - clamp(1rem, 3vw, 2.5rem))) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem) !important;
  line-height: 0.92;
  font-weight: 850;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem) !important;
  line-height: 0.96;
  font-weight: 740;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 730;
}

p {
  line-height: 1.7;
}

.glass-panel,
.faq-item,
.how-card,
.timeline-card-shell,
.timeline-detail,
.leaderboard-feature,
.leaderboard-row,
.standings-card,
.leader-card,
.glass-card,
.placeholder-page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-md);
}

.site-navbar {
  background: rgba(255, 255, 255, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(var(--glass-blur-soft));
  -webkit-backdrop-filter: blur(var(--glass-blur-soft));
}

.site-navbar.sticky-top {
  top: 0;
  z-index: 1030;
}

body.has-announcement-bar .site-navbar.sticky-top {
  top: var(--announcement-bar-height);
}

.site-navbar .container {
  gap: 1.4rem;
}

.site-navbar .navbar-brand.logo-only .brand-mark {
  width: 95px;
  height: 95px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.navbar-brand.logo-only {
  gap: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(17, 82, 187, 0.16);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar-brand.logo-only .brand-mark {
  width: 58px;
  height: 58px;
  padding: 9px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-kicker {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #145dd1;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: rgba(10, 31, 84, 0.7);
}

.nav-link {
  color: rgba(10, 31, 84, 0.82) !important;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 0.95rem 0.72rem 0.95rem !important;
  border-radius: 0;
  background: transparent !important;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--lime) !important;
  background: transparent !important;
  box-shadow: none;
}

.nav-link:hover::before,
.nav-link:focus::before,
.nav-link.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-links {
  gap: 1.05rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.navbar-collapse {
  align-items: center;
  gap: 1.6rem;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  border-width: 1px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime) 0%, #fff59d 100%);
  border-color: transparent;
  color: var(--ink);
  box-shadow: 0 14px 35px rgba(241, 255, 70, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #f9ff9d 0%, #ffffff 100%);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(241, 255, 70, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 255, 255, 0.28);
  border-color: transparent;
  color: var(--white);
  box-shadow: none;
}

.btn-outline-brand {
  background: transparent;
  border-color: rgba(20, 93, 209, 0.25);
  color: #145dd1;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: rgba(20, 93, 209, 0.08);
  border-color: transparent;
  color: #0c4eb7;
  box-shadow: none;
}

.btn-muted,
.btn[disabled] {
  background: rgba(10, 31, 84, 0.05) !important;
  border-color: rgba(10, 31, 84, 0.08) !important;
  color: rgba(10, 31, 84, 0.38) !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

.section-shell {
  padding: 92px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 108px;
}

body.has-announcement-bar section[id] {
  scroll-margin-top: calc(108px + var(--announcement-bar-height));
}

.section-soft-wash {
  background:
    linear-gradient(
      90deg,
      rgba(96, 166, 255, 0.12) 0%,
      rgba(96, 166, 255, 0.04) 20%,
      rgba(255, 255, 255, 0) 44%
    ),
    linear-gradient(
      270deg,
      rgba(239, 131, 84, 0.12) 0%,
      rgba(239, 131, 84, 0.04) 22%,
      rgba(255, 255, 255, 0) 46%
    ),
    linear-gradient(180deg, #eaf2ff 0%, #edf4ff 100%);
}

.section-soft-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.18) 100%
  );
}

.section-soft-wash > .container {
  position: relative;
  z-index: 1;
}

#faq.section-soft-wash {
  background:
    linear-gradient(
      90deg,
      rgba(96, 166, 255, 0.1) 0%,
      rgba(96, 166, 255, 0.04) 22%,
      rgba(255, 255, 255, 0) 44%
    ),
    linear-gradient(
      270deg,
      rgba(239, 131, 84, 0.28) 0%,
      rgba(239, 131, 84, 0.16) 22%,
      rgba(255, 255, 255, 0) 54%
    ),
    linear-gradient(180deg, #edf4ff 0%, #fff1e7 100%);
}

#faq.section-soft-wash::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 244, 236, 0.32) 100%
  );
}

.soft-wash-cluster {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(96, 166, 255, 0.12) 0%,
      rgba(96, 166, 255, 0.04) 24%,
      rgba(255, 255, 255, 0) 48%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(239, 131, 84, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 84% 44%,
      rgba(239, 131, 84, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 89% 78%,
      rgba(239, 131, 84, 0.24),
      transparent 34%
    ),
    linear-gradient(180deg, #edf4ff 0%, #fff1e6 100%);
}

.soft-wash-cluster::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 90% 14%,
      rgba(239, 131, 84, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 84% 50%,
      rgba(239, 131, 84, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 86%,
      rgba(239, 131, 84, 0.14),
      transparent 26%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 244, 236, 0.34) 100%
    );
}

.soft-wash-cluster > section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-heading-light h2,
.section-heading-light .section-copy {
  color: var(--white);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-eyebrow.dark {
  background: rgba(20, 93, 209, 0.08);
  border-color: rgba(20, 93, 209, 0.12);
  color: #145dd1;
}

.section-copy,
.section-note {
  max-width: 720px;
  margin: 1rem auto 0 auto;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-note {
  font-size: 0.95rem;
  font-style: italic;
}

.section-copy-left {
  margin-left: 0;
  margin-right: 0;
}

.hero {
  position: relative;
  overflow: visible;
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(
      var(--gradient-shift-x, 0px),
      var(--gradient-shift-y, 0px),
      0
    )
    scale(var(--gradient-scale, 1));
  transform-origin: center;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -130px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0)
  );
  filter: blur(8px);
}

.hero::after {
  width: 760px;
  height: 760px;
  left: -280px;
  bottom: -460px;
  background: radial-gradient(
    circle,
    rgba(239, 131, 84, 0.46),
    rgba(239, 131, 84, 0)
  );
}

.hero-home {
  padding: 100px 0 96px 0;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
}

.hero-home .container {
  max-width: 1280px !important;
  position: relative;
  z-index: 4;
}

.hero-home::after {
  width: 720px;
  height: 720px;
  left: -210px;
  bottom: -410px;
  background: radial-gradient(
    circle,
    rgba(239, 131, 84, 0.6),
    rgba(239, 131, 84, 0)
  );
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.18fr);
  gap: clamp(4.5rem, 7vw, 7rem);
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-copy {
  max-width: 43rem;
}

.hero-caption {
  margin: 0 0 1rem 0;
  color: var(--lime);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  max-width: none;
  font-size: clamp(4.2rem, 8.4vw, 7.5rem) !important;
  line-height: 0.84;
  letter-spacing: -0.035em;
}

.hero-title span {
  white-space: nowrap;
}

.hero-description {
  max-width: 38rem;
  margin: 1.6rem 0 0 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.mini-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-placeholder {
  min-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-placeholder-image {
  position: relative;
  min-height: 900px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: clamp(2.5rem, 4.6vw, 5.5rem);
  overflow: visible;
}

.hero-artwork-image {
  width: min(112%, 880px);
  height: auto;
  min-height: 0;
  max-width: none;
  max-height: 920px;
  object-fit: contain;
  object-position: right center;
  align-self: center;
  transform: translateX(12px);
}

.section-gradient-shell {
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 0;
  --gradient-scale: 1;
  --gradient-shift-x: 0px;
  --gradient-shift-y: 0px;
}

.section-gradient-shell > .container {
  position: relative;
  z-index: 1;
}

.section-gradient-shell-games::before,
.section-gradient-shell-games::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(64px);
  opacity: 0.48;
}

.section-gradient-shell-games {
  isolation: isolate;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 24%
    ),
    linear-gradient(120deg, #0f67d5 0%, #2b79df 28%, #4f97ef 58%, #ef8354 100%);
  background-size: 100% 100%;
}

.section-gradient-shell-games::before {
  left: -10%;
  top: 10%;
  width: 54%;
  height: 40%;
  border-radius: 56px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.12),
    rgba(239, 131, 84, 0.24),
    rgba(45, 125, 226, 0.08)
  );
}

.section-gradient-shell-games::after {
  right: -8%;
  bottom: 8%;
  width: 42%;
  height: 32%;
  border-radius: 64px;
  background: linear-gradient(
    140deg,
    rgba(239, 131, 84, 0.26),
    rgba(255, 255, 255, 0.06),
    rgba(23, 111, 216, 0.08)
  );
}

.meta-band-section {
  margin-top: 3.6rem;
  position: relative;
  z-index: 8;
  isolation: isolate;
}

.meta-band {
  position: relative;
  z-index: 8;
  background: rgba(232, 241, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 55px rgba(7, 37, 98, 0.12);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  width: 100%;
}

.meta-band-item {
  padding: 1.35rem 1.4rem;
  border-right: 1px solid rgba(10, 31, 84, 0.08);
}

.meta-band-item:last-child {
  border-right: none;
}

.meta-band-label {
  display: block;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.meta-band-value {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(10, 31, 84, 0.7);
}

.sponsor-section-simple {
  margin-top: 0;
  min-height: 420px;
  position: relative;
  z-index: 2;
}

.sponsor-slot-reserved {
  min-height: clamp(220px, 28vw, 360px);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #7b5c9d 0%, #9b7bb5 100%);
}

.sponsor-logo-col {
  padding: 60px 40px;
  min-height: 420px;
}

.sponsor-logo-simple {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.sponsor-image-col {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.sponsor-image-simple {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.games-grid,
.leader-grid,
.snapshot-grid {
  display: grid;
  gap: 1.5rem;
}

.editorial-games-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.editorial-game-card {
  background: linear-gradient(
    180deg,
    rgba(252, 253, 255, 0.96),
    rgba(238, 245, 255, 0.92)
  );
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.4vw, 2.7rem);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.68);
}

.editorial-game-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 131, 84, 0.18),
    transparent 72%
  );
  pointer-events: none;
}

.editorial-game-kicker {
  margin: 0 0 1rem 0;
  color: rgba(239, 131, 84, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.editorial-game-title {
  font-size: clamp(2rem, 3.85vw, 3.05rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: #06163f;
  max-width: none;
}

.editorial-game-copy {
  margin: 2.45rem 0 0 0;
  max-width: none;
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  line-height: 1.5;
  color: rgba(10, 31, 84, 0.92);
}

.editorial-game-copy-secondary {
  margin-top: 1.95rem;
  color: rgba(10, 31, 84, 0.7);
}

.editorial-meta {
  margin-top: 2.7rem;
}

.editorial-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(10, 31, 84, 0.12);
}

.editorial-meta-row:last-child {
  border-bottom: 1px solid rgba(10, 31, 84, 0.12);
}

.editorial-meta-row span {
  color: rgba(10, 31, 84, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.editorial-meta-row strong {
  text-align: right;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-gradient-shell-games .section-heading h2,
.section-gradient-shell-games .section-note {
  color: var(--white);
}

.section-gradient-shell-games .section-eyebrow.dark {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--lime);
}

.how-section {
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(241, 255, 70, 0.18),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(239, 131, 84, 0.18),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(6, 37, 95, 0.9) 0%,
      rgba(12, 84, 182, 0.92) 100%
    );
  color: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.how-card {
  border-radius: 24px;
  min-height: 100%;
  padding: 1.45rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.26),
    rgba(255, 255, 255, 0.08)
  );
}

.how-card h3 {
  margin: 0 0 0.95rem 0;
}

.how-card p {
  margin: 0;
}

.how-step {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lime) 0%, #ffffff 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
}

.how-card p,
.how-card strong {
  color: rgba(255, 255, 255, 0.92);
}

.how-card a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(241, 255, 70, 0.92);
  text-underline-offset: 0.16em;
}

.how-card a:hover {
  color: var(--lime);
}

.timeline-card-shell {
  border-radius: var(--radius-xl);
  padding: clamp(1.7rem, 3vw, 2.35rem);
  overflow: hidden;
}

.timeline-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.timeline-kicker {
  margin: 0 0 0.55rem 0;
  color: #145dd1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.timeline-duration-pill {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(10, 31, 84, 0.06);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline-shell {
  width: 100%;
  margin-top: 2.35rem;
}

.timeline-months {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 1rem;
  padding: 0 3%;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.timeline-months span {
  text-align: left;
}

.timeline-months .is-active-month {
  color: #145dd1;
}

.timeline-month-future {
  color: rgba(10, 31, 84, 0.44);
  text-align: right !important;
}

.timeline-track {
  position: relative;
  height: 168px;
  margin-top: 1.35rem;
}

.timeline-base,
.timeline-range {
  position: absolute;
  top: 68px;
  height: 13px;
  border-radius: 999px;
}

.timeline-base {
  left: 4%;
  right: 3%;
  background: rgba(10, 31, 84, 0.08);
}

.timeline-range-major {
  left: 9%;
  right: calc(100% - 81%);
  background: linear-gradient(
    90deg,
    rgba(20, 93, 209, 0.16),
    rgba(239, 131, 84, 0.22)
  );
}

.timeline-range-live {
  left: 18%;
  right: calc(100% - 81%);
  background: linear-gradient(90deg, #145dd1 0%, #ef8354 100%);
  box-shadow: 0 0 0 8px rgba(239, 131, 84, 0.11);
}

.timeline-marker {
  --marker-position: 0%;
  position: absolute;
  left: var(--marker-position);
  top: 18px;
  transform: translateX(-50%);
  border: none;
  background: transparent;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
}

.timeline-marker::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 76px auto;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid #145dd1;
  box-shadow: 0 0 0 7px rgba(20, 93, 209, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.timeline-marker span {
  display: inline-block;
  min-width: 96px;
  padding: 0.5rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 31, 84, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.timeline-marker-future::before {
  border-color: rgba(10, 31, 84, 0.35);
  box-shadow: 0 0 0 7px rgba(10, 31, 84, 0.05);
}

.timeline-marker-future span {
  background: rgba(10, 31, 84, 0.06);
  color: rgba(10, 31, 84, 0.64);
  min-width: 118px;
}

.timeline-marker:hover::before,
.timeline-marker:focus-visible::before,
.timeline-marker.is-active::before {
  transform: scale(1.08);
  background: #fff7e7;
  box-shadow: 0 0 0 10px rgba(239, 131, 84, 0.16);
}

.timeline-marker:focus-visible {
  outline: none;
}

.timeline-marker.is-active span {
  background: rgba(239, 131, 84, 0.16);
  color: #be5f35;
}

.timeline-detail {
  margin-top: 1.6rem;
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
}

.timeline-detail-date {
  margin: 0 0 0.35rem 0;
  color: #145dd1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
}

.timeline-detail-title {
  margin-bottom: 0.6rem;
}

.timeline-detail-copy {
  color: var(--ink-soft);
}

.timeline-card-shell-year {
  width: min(1900px, calc(100vw - 2rem));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: visible;
  padding: clamp(2rem, 3vw, 2.9rem);
  border-radius: 36px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.68) 100%
    ),
    radial-gradient(
      circle at 10% 18%,
      rgba(20, 93, 209, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(239, 131, 84, 0.18),
      transparent 30%
    );
  border-color: rgba(255, 255, 255, 0.66);
}

.timeline-header-row-year {
  display: block;
}

.timeline-heading-block {
  max-width: none;
}

.timeline-heading-accent {
  display: block;
  width: 108px;
  height: 5px;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(20, 93, 209, 0.22),
    rgba(20, 93, 209, 0.06)
  );
}

.timeline-header-row-year .timeline-kicker {
  margin-bottom: 0.9rem;
}

.timeline-header-row-year h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.timeline-header-copy {
  max-width: none;
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  line-height: 1.45;
  white-space: nowrap;
}

.timeline-shell-year {
  width: 100%;
  margin-top: 3rem;
}

.timeline-shell-year .timeline-months {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-shell-year .timeline-months span {
  text-align: center;
}

.timeline-shell-year .timeline-months .is-active-month {
  color: #145dd1;
}

.timeline-shell-year .timeline-track {
  height: 178px;
  margin-top: 1.35rem;
}

.timeline-shell-year .timeline-base,
.timeline-shell-year .timeline-range {
  top: 68px;
  height: 13px;
  border-radius: 999px;
}

.timeline-shell-year .timeline-base {
  left: 0;
  right: 0;
  background: rgba(10, 31, 84, 0.08);
  box-shadow: none;
}

.timeline-range-split {
  top: 68px;
  height: 13px;
}

.timeline-range-split-one {
  left: 31.5%;
  right: calc(100% - 62%);
  background: linear-gradient(
    90deg,
    rgba(20, 93, 209, 0.16),
    rgba(239, 131, 84, 0.22)
  );
}

.timeline-range-split-two {
  left: 31.5%;
  right: calc(100% - 62%);
  background: linear-gradient(90deg, #145dd1 0%, #ef8354 100%);
  box-shadow: 0 0 0 8px rgba(239, 131, 84, 0.11);
}

.timeline-shell-year .timeline-marker {
  top: 18px;
}

.timeline-shell-year .timeline-marker::before {
  width: 20px;
  height: 20px;
  margin: 0 auto 76px auto;
  background: var(--white);
  border: 4px solid #145dd1;
  box-shadow: 0 0 0 7px rgba(20, 93, 209, 0.08);
}

.timeline-shell-year .timeline-marker:hover::before,
.timeline-shell-year .timeline-marker:focus-visible::before,
.timeline-shell-year .timeline-marker.is-active::before {
  transform: scale(1.08);
  background: #fff7e7;
  border-color: #145dd1;
  box-shadow: 0 0 0 10px rgba(239, 131, 84, 0.16);
}

.timeline-shell-year .timeline-marker span {
  display: inline-block;
  min-width: 104px;
  padding: 0.5rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 31, 84, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.timeline-shell-year .timeline-marker.is-active span {
  background: rgba(239, 131, 84, 0.16);
  color: #be5f35;
}

.leaderboard-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: stretch;
}

.leaderboard-feature,
.leaderboard-row {
  border-radius: 28px;
}

.leaderboard-feature {
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.leaderboard-feature::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(241, 255, 70, 0.24),
    transparent 72%
  );
}

.leaderboard-feature-kicker {
  margin: 0 0 1rem 0;
  color: #145dd1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.leaderboard-feature-rank {
  font-family: var(--font-sans);
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 850;
  color: var(--ink);
}

.leaderboard-feature h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.leaderboard-feature-points {
  margin: 1rem 0 0.6rem 0;
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 740;
  color: #ef8354;
}

.leaderboard-feature-note {
  max-width: 38ch;
  margin: 0;
  color: var(--ink-soft);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.leaderboard-row {
  width: 100%;
  border: 1px solid var(--border);
  padding: 1rem 1.15rem;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.leaderboard-row:hover,
.leaderboard-row:focus-visible,
.leaderboard-row.is-active {
  transform: translateY(-2px);
  border-color: rgba(20, 93, 209, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.leaderboard-row:focus-visible {
  outline: none;
}

.leaderboard-row-rank {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 820;
  color: #145dd1;
}

.leaderboard-row-name {
  font-size: 1rem;
  font-weight: 700;
}

.leaderboard-row-meta {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.leaderboard-row-points {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 760;
  color: #ef8354;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  border: none;
  box-shadow: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 1.15rem 1.35rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #145dd1;
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
}

.faq-answer {
  padding: 0 1.35rem 1.35rem 1.35rem;
  color: var(--ink-soft);
}

.faq-answer a {
  color: #145dd1;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-shell {
  margin-top: 0;
  background: #04070f;
  color: rgba(255, 255, 255, 0.84);
}

.footer-shell-statement {
  padding: 60px 0 42px 0;
}

.footer-shell .footer-brand-logo .brand-mark {
  background: transparent;
  box-shadow: none;
  width: min(126px, 100%);
  height: auto;
  padding: 0;
  border-radius: 0;
  display: block;
}

.footer-shell .footer-brand-logo .brand-mark img {
  filter: none;
}

.footer-shell .brand-kicker,
.footer-shell .brand-name,
.footer-shell .brand-subtitle,
.footer-shell a,
.footer-shell h5 {
  color: var(--white);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.72fr));
  gap: 1.6rem;
  align-items: start;
}

.footer-brand-column {
  max-width: 28rem;
}

.footer-label {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer-link-group {
  display: grid;
  gap: 0.55rem;
}

.footer-link-group a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.footer-link-group a:hover {
  color: var(--lime);
}

.footer-link-group-right {
  justify-items: start;
}

.footer-partner-group {
  align-content: start;
}

.footer-partner-stack {
  display: grid;
  gap: 0.85rem;
}

.footer-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 0.9rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-partner-card img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-partner-card-logo img {
  width: min(188px, 100%);
}

.footer-partner-card-shield {
  min-height: 148px;
  padding: 0.95rem 0.9rem;
}

.footer-partner-card-shield img {
  width: min(118px, 100%);
}

.footer-note {
  color: rgba(255, 255, 255, 0.68);
}

.footer-note-strong {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.footer-wordmark-wrap {
  margin-top: 3rem;
  margin-bottom: 0.35rem;
  overflow: hidden;
  height: clamp(146px, 18vw, 238px);
}

.footer-wordmark {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: flex-start;
  gap: 0.08em;
  align-items: end;
  font-family: var(--font-sans);
  font-size: clamp(6rem, 17vw, 13rem);
  line-height: 0.78;
  font-weight: 850;
  letter-spacing: -0.08em;
  color: var(--cream);
  transform: translateY(10%);
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes gamesGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 80% 35%;
  }

  100% {
    background-position: 100% 70%;
  }
}

@keyframes gamesRibbonDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(28px, -16px, 0) scale(1.04);
    opacity: 0.56;
  }

  100% {
    transform: translate3d(-18px, 20px, 0) scale(0.98);
    opacity: 0.46;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-gradient-shell-games,
  .section-gradient-shell-games::before,
  .section-gradient-shell-games::after {
    animation: none !important;
  }
}

.page-hero {
  padding: 88px 0 56px 0;
}

.page-hero .lead {
  max-width: 720px;
  margin: 1.3rem 0 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.standings-shell {
  padding-top: 20px;
}

.standings-grid,
.leader-grid,
.snapshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.standings-card,
.leader-card,
.glass-card,
.placeholder-page-card {
  border-radius: 24px;
  padding: 1.5rem;
}

.standings-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
}

.standings-position {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(20, 93, 209, 0.14),
    rgba(241, 255, 70, 0.24)
  );
  color: #145dd1;
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 820;
}

.standings-points {
  text-align: right;
  color: #ef8354;
  font-family: var(--font-sans);
  font-size: 1.9rem;
  font-weight: 790;
}

.standings-points span {
  display: block;
  color: var(--ink-muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.muted-note {
  margin: 0.25rem 0 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.leader-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.leader-card {
  text-align: center;
}

.leader-rank {
  font-family: var(--font-sans);
  font-size: 1.9rem;
  font-weight: 820;
  color: #145dd1;
}

.leader-points {
  margin: 0.6rem 0 0.35rem 0;
  color: #ef8354;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 760;
}

.leader-subtext {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.snapshot-table {
  width: 100%;
  border-collapse: collapse;
}

.snapshot-table th,
.snapshot-table td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(10, 31, 84, 0.08);
}

.snapshot-table th {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.snapshot-table tr:last-child td {
  border-bottom: none;
}

.placeholder-page-card ul {
  margin: 1rem 0 0 0;
  padding-left: 1rem;
}

.winners-page-hero {
  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(255, 255, 255, 0.24),
      transparent 18%
    ),
    radial-gradient(
      circle at 16% 88%,
      rgba(239, 131, 84, 0.2),
      transparent 26%
    ),
    linear-gradient(180deg, #0f5fcc 0%, #1f73da 52%, #dcecff 100%);
}

.winners-shell {
  background:
    linear-gradient(
      90deg,
      rgba(96, 166, 255, 0.1) 0%,
      rgba(96, 166, 255, 0.03) 24%,
      rgba(255, 255, 255, 0) 50%
    ),
    linear-gradient(
      270deg,
      rgba(239, 131, 84, 0.14) 0%,
      rgba(239, 131, 84, 0.05) 24%,
      rgba(255, 255, 255, 0) 54%
    ),
    linear-gradient(180deg, #edf4ff 0%, #fff7f1 100%);
}

.winners-surface {
  background: rgba(255, 255, 255, 0.08);
}

.winners-archive {
  border-radius: 32px;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.winners-archive-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: end;
}

.winners-archive-kicker,
.winners-division-kicker {
  margin: 0 0 0.55rem 0;
  color: #145dd1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.winners-archive-copy {
  max-width: 34rem;
}

.winners-pill-stack {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

.winners-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.winners-pill,
.winners-division-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 93, 209, 0.14);
  background: rgba(255, 255, 255, 0.66);
  color: #145dd1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.winners-pill.is-active,
.winners-division-chip {
  background: rgba(20, 93, 209, 0.12);
}

.winners-pill.is-muted {
  color: rgba(10, 31, 84, 0.42);
  border-color: rgba(10, 31, 84, 0.08);
  background: rgba(10, 31, 84, 0.04);
}

.winners-stat-strip {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.winners-stat-strip span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}

.winners-division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.winners-division {
  border-radius: 30px;
  padding: clamp(1.45rem, 2.8vw, 1.9rem);
}

.winners-division-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.45rem;
}

.winner-podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.winner-podium-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.winner-place-card,
.winner-single-card {
  border-radius: 24px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-sm);
}

.winner-single-card {
  display: grid;
  gap: 0.45rem;
}

.winner-place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(20, 93, 209, 0.12);
  color: #145dd1;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.winner-label {
  margin: 0.95rem 0 0.45rem 0;
  color: rgba(10, 31, 84, 0.48);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.winner-place-card h4,
.winner-single-card h4 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.02;
}

.winner-metric {
  margin: 0.8rem 0 0 0;
  color: #ef8354;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 760;
}

.winner-support {
  margin: 0.75rem 0 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.winners-table-wrap {
  margin-top: 1.35rem;
}

.winners-table td:last-child,
.winners-table th:last-child {
  text-align: right;
}

.winners-note {
  margin-top: 1rem;
}

.winners-summary-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.winners-results-section .section-heading {
  max-width: 860px;
}

.winners-accordion {
  display: grid;
  gap: 0.85rem;
}

.winners-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 18px 48px rgba(7, 37, 98, 0.12);
}

.winners-accordion-item .accordion-header {
  margin: 0;
}

.winners-accordion-item .accordion-button {
  padding: 1.05rem 1.2rem;
  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(255, 255, 255, 0.18),
      transparent 18%
    ),
    linear-gradient(135deg, #0f5fcc 0%, #2a79df 100%);
  color: var(--white);
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 700;
}

.winners-accordion-item .accordion-button:not(.collapsed) {
  color: var(--white);
  box-shadow: none;
}

.winners-accordion-item .accordion-button::after {
  filter: brightness(0) invert(1);
  background-size: 0.95rem;
}

.winners-accordion-item-muted .accordion-button {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(237, 244, 255, 0.92)
  );
  color: var(--ink);
}

.winners-accordion-item-muted .accordion-button:not(.collapsed) {
  color: var(--ink);
}

.winners-accordion-item-muted .accordion-button::after {
  filter: none;
}

.winners-accordion-game {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1;
}

.winners-accordion-game i {
  font-size: 0.98rem;
}

.winners-accordion-body {
  padding: 0.85rem 0.9rem 0.95rem 0.9rem;
  background:
    radial-gradient(
      circle at 88% 82%,
      rgba(239, 131, 84, 0.1),
      transparent 16%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84),
      rgba(244, 248, 255, 0.96)
    );
}

.winner-rank-stack {
  display: grid;
  gap: 0.65rem;
}

.winner-rank-card {
  --place-accent: #145dd1;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  grid-template-areas: "order copy points";
  gap: 0.9rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(10, 31, 84, 0.08);
  background:
    radial-gradient(
      circle at 88% 50%,
      rgba(239, 131, 84, 0.06),
      transparent 18%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(244, 248, 255, 0.94) 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 8px 24px rgba(7, 37, 98, 0.05);
}

.winner-rank-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--place-accent);
}

.winner-rank-card.is-gold {
  --place-accent: #d7a423;
}

.winner-rank-card.is-silver {
  --place-accent: #7d8fb9;
}

.winner-rank-card.is-bronze {
  --place-accent: #ef8354;
}

.winner-rank-card.is-blue {
  --place-accent: #2a67d8;
}

.winner-rank-order {
  grid-area: order;
  display: grid;
  gap: 0.16rem;
  align-content: center;
  justify-items: start;
  min-width: 0;
}

.winner-rank-number {
  color: var(--place-accent);
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 0.92;
}

.winner-rank-copy {
  grid-area: copy;
  min-width: 0;
}

.winner-rank-copy h4 {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.02;
}

.winner-rank-place {
  margin: 0;
  color: var(--place-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.winner-rank-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.winner-rank-points {
  grid-area: points;
  text-align: right;
  min-width: 72px;
}

.winner-rank-points span {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.winner-rank-points strong {
  display: block;
  color: var(--place-accent);
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 760;
  line-height: 0.95;
}

.winner-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(20, 93, 209, 0.07);
  border: 1px solid rgba(20, 93, 209, 0.08);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
}

.winner-stat-chip strong {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.winner-stat-chip.is-muted {
  background: rgba(10, 31, 84, 0.05);
  border-color: rgba(10, 31, 84, 0.06);
  color: var(--ink-muted);
}

.winners-table-wrap {
  margin-top: 0.2rem;
  border-radius: 18px;
  overflow: hidden;
}

.winners-table th:nth-child(3),
.winners-table th:nth-child(4),
.winners-table td:nth-child(3),
.winners-table td:nth-child(4) {
  text-align: center;
}

.winners-table td:last-child {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 760;
  color: var(--ink);
}

.winners-page-hero {
  padding: 92px 0 84px 0;
}

.winners-page-hero .container {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.winners-page-hero .section-eyebrow {
  margin-bottom: 0;
}

.winners-page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.2rem) !important;
}

.winners-page-hero .winners-year-switcher {
  width: min(100%, 540px);
  min-height: 96px;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
}

.winners-page-hero .winners-year-switcher-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  font-size: 1.35rem;
}

.winners-page-hero .winners-year-select {
  font-size: 1.55rem;
  font-weight: 800;
}

.winners-shell-archive {
  position: relative;
}

.winners-archive-hub {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 1.35rem;
}

.winners-year-switcher,
.winners-toolbar,
.winners-leaderboard-card,
.winners-title-item,
.winners-coming-card,
.winners-empty-state {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-md);
}

.winners-year-switcher {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0.82rem 1rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.winners-year-switcher-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(241, 255, 70, 0.94),
    rgba(255, 255, 255, 0.92)
  );
  color: var(--ink);
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(14, 92, 202, 0.12);
}

.winners-year-select {
  width: 100%;
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  padding-right: 1.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #145dd1 50%),
    linear-gradient(135deg, #145dd1 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 4px),
    calc(100% - 12px) calc(50% - 4px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.winners-year-select:focus {
  outline: none;
}

.winners-toolbar {
  margin-top: 0;
  padding: 1rem 1.1rem;
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.winners-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.winners-filter-chip {
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 93, 209, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(10, 31, 84, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.winners-filter-chip:hover,
.winners-filter-chip:focus-visible,
.winners-filter-chip.is-active {
  transform: translateY(-1px);
  background: linear-gradient(
    135deg,
    rgba(20, 93, 209, 0.12),
    rgba(58, 136, 230, 0.08)
  );
  border-color: rgba(20, 93, 209, 0.2);
  color: #145dd1;
  outline: none;
}

.winners-filter-chip.is-disabled,
.winners-filter-chip:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.winners-search-field {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 360px);
  min-height: 54px;
  padding: 0 1rem 0 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 93, 209, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.winners-search-field i {
  color: rgba(20, 93, 209, 0.58);
  font-size: 1rem;
}

.winners-search-field input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0 0 0 0.7rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.winners-search-field input::placeholder {
  color: rgba(10, 31, 84, 0.46);
}

.winners-search-field input:focus {
  outline: none;
}

.winners-results-shell {
  padding-top: 58px;
}

.winners-year-panel {
  display: grid;
  gap: 1.5rem;
  min-height: clamp(920px, 108vh, 1220px);
  align-content: center;
}

.winners-series-panel {
  display: grid;
  gap: 1.75rem;
  min-height: 100%;
  align-content: center;
}

.winners-series-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.winners-series-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(20, 93, 209, 0.1);
  color: #145dd1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.winners-series-badge.is-future {
  background: rgba(239, 131, 84, 0.12);
  color: #d76f3f;
}

.winners-series-header h2 {
  margin-top: 1rem;
  font-size: clamp(2.55rem, 4.8vw, 3.9rem) !important;
  white-space: nowrap;
}

.winners-series-header p {
  margin: 0.95rem auto 0 auto;
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.winners-archive-stack {
  width: 100%;
  max-width: none;
  margin: 0;
}

.winners-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: end;
  margin-bottom: 1rem;
}

.winners-card-kicker {
  margin: 0 0 0.32rem 0;
  color: #145dd1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.winners-card-head h3 {
  font-size: 1.45rem;
}

.winners-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 93, 209, 0.08);
  color: #145dd1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.winners-overview-table {
  display: grid;
  gap: 0.35rem;
}

.winners-overview-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 64px 64px 72px;
  gap: 0.8rem;
  align-items: center;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 93, 209, 0.06);
  color: var(--ink);
  font-size: 0.93rem;
}

.winners-overview-head {
  min-height: auto;
  padding: 0 0.95rem 0.3rem 0.95rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.winners-overview-row strong {
  text-align: right;
  font-size: 1.1rem;
  font-weight: 760;
}

.winners-panel-note {
  margin-top: 0.95rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.winners-title-accordion {
  display: grid;
  gap: 0.95rem;
}

.winners-title-item {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.winners-title-item .accordion-header {
  margin: 0;
}

.winners-title-item .accordion-button {
  min-height: 86px;
  padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 32px;
}

.winners-title-item .accordion-button:not(.collapsed) {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(237, 244, 255, 0.84)
  );
  color: var(--ink);
  border-radius: 32px 32px 0 0;
}

.winners-title-item .accordion-button::after {
  background-size: 0.95rem;
}

.winners-title-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.winners-title-label i {
  color: #145dd1;
}

.winners-title-body {
  padding: 0.95rem 1.08rem 1.08rem 1.08rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(244, 248, 255, 0.94)
  );
  border-radius: 0 0 32px 32px;
}

.winners-title-body-standings {
  padding-top: 1.08rem;
}

.winners-archive-stack .winners-title-item:first-child,
.winners-archive-stack .winners-title-item:first-child .accordion-button {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.winners-archive-stack .winners-title-item:last-child,
.winners-archive-stack .winners-title-item:last-child .accordion-button {
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.winners-game-list {
  display: grid;
  gap: 0.65rem;
}

.winners-game-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.92rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 93, 209, 0.06);
}

.winners-game-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(20, 93, 209, 0.08);
  color: #145dd1;
  font-size: 0.88rem;
  font-weight: 700;
}

.winners-game-copy {
  min-width: 0;
}

.winners-game-copy strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.15;
}

.winners-game-copy span {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.winners-game-points {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(239, 131, 84, 0.1);
  color: #d76f3f;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.winners-coming-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.3rem 2rem;
  border-radius: 30px;
  text-align: center;
}

.winners-coming-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1rem auto;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #145dd1 0%, #6d63c8 100%);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 20px 44px rgba(20, 93, 209, 0.2);
}

.winners-coming-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 131, 84, 0.12);
  color: #d76f3f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.winners-coming-card h3 {
  margin-top: 1.15rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.winners-coming-card p {
  max-width: 34rem;
  margin: 0.9rem auto 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
}

.winners-coming-meta {
  margin: 1.35rem auto 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.winners-empty-state {
  max-width: 560px;
  margin: 1.25rem auto 0 auto;
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
  text-align: center;
}

.winners-empty-state h3 {
  font-size: 1.4rem;
}

.winners-empty-state p {
  color: var(--ink-soft);
}

@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-placeholder {
    min-height: auto;
  }

  .hero-artwork-image {
    width: min(100%, 640px);
    height: auto;
    min-height: 0;
    max-height: 640px;
    max-width: 100%;
    transform: none;
  }

  .hero-placeholder-image {
    min-height: 640px;
    padding-left: 0;
    justify-content: center;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leader-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-months {
    padding: 0 2%;
  }

  .timeline-card-shell-year {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .timeline-shell-year .timeline-months {
    gap: 0.28rem;
    font-size: 0.68rem;
  }

  .footer-wordmark {
    font-size: clamp(5.2rem, 13.4vw, 9.4rem);
  }

  .winner-podium-grid,
  .winner-podium-grid-compact {
    grid-template-columns: 1fr;
  }

  .winner-rank-card {
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas:
      "order copy"
      "order points";
  }

  .winner-rank-points {
    text-align: left;
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .hero-home {
    padding-top: 92px;
    padding-bottom: 84px;
  }

  .navbar-collapse {
    padding-top: 1rem;
    align-items: stretch;
  }

  .site-nav-links {
    justify-content: center;
    margin: 0.5rem 0 0;
  }

  .navbar-collapse .d-flex {
    width: 100%;
  }

  .navbar-collapse .d-flex .btn {
    width: 100%;
  }

  .meta-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meta-band-item:nth-child(2) {
    border-right: none;
  }

  .meta-band-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(10, 31, 84, 0.08);
  }

  .meta-band-section {
    margin-top: 2.8rem;
  }

  .timeline-months {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .timeline-track {
    height: 156px;
  }

  .timeline-shell-year .timeline-months {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .editorial-games-grid,
  .leaderboard-shell,
  .faq-layout,
  .standings-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-intro {
    position: static;
  }

  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-wordmark-wrap {
    height: clamp(124px, 16vw, 186px);
  }

  .footer-wordmark {
    font-size: clamp(4.6rem, 11.5vw, 7.8rem);
  }

  .standings-card {
    grid-template-columns: 72px 1fr;
  }

  .standings-points {
    grid-column: 2;
    text-align: left;
  }

  .winners-stat-strip,
  .winners-division-grid,
  .winners-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .winners-pill-stack,
  .winners-pill-row {
    justify-items: start;
    justify-content: flex-start;
  }

  .winners-accordion-game {
    font-size: 0.98rem;
  }
}

@media (max-width: 767px) {
  .section-shell {
    padding: 74px 0;
  }

  .hero-home {
    padding: 98px 0 74px 0;
  }

  .hero-caption {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
  }

  .hero-actions,
  .mini-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(3.2rem, 14vw, 5.6rem) !important;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-artwork-image {
    width: min(100%, 420px);
    height: auto;
    min-height: 0;
    max-height: 420px;
    max-width: 100%;
    object-position: center center;
    margin-inline: auto;
    transform: none;
  }

  .hero-placeholder {
    justify-content: center;
  }

  .hero-placeholder-image {
    min-height: 420px;
    padding-left: 0;
    align-items: center;
    justify-content: center;
  }

  .meta-band,
  .how-grid,
  .leader-grid,
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .meta-band-section {
    margin-top: 2.1rem;
  }

  .meta-band-item {
    border-right: none;
    border-bottom: 1px solid rgba(10, 31, 84, 0.08);
  }

  .meta-band-item:last-child {
    border-bottom: none;
  }

  .sponsor-logo-col {
    min-height: 300px;
    padding: 40px 24px;
  }

  .sponsor-image-col {
    min-height: 280px;
  }

  .editorial-game-copy {
    max-width: none;
  }

  .editorial-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .editorial-meta-row strong {
    text-align: left;
  }

  .timeline-card-shell {
    padding: 1.25rem;
  }

  .timeline-card-shell-year {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .site-navbar .navbar-brand.logo-only .brand-mark {
    width: 76px;
    height: 76px;
  }

  .timeline-shell {
    margin-top: 1.8rem;
  }

  .timeline-months {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0;
    text-align: left;
  }

  .timeline-month-future {
    text-align: left !important;
  }

  .timeline-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    height: auto;
    margin-top: 1.1rem;
  }

  .timeline-base,
  .timeline-range {
    display: none;
  }

  .timeline-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    text-align: left;
  }

  .timeline-marker::before {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
  }

  .timeline-marker span {
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .timeline-duration-pill {
    width: 100%;
    text-align: center;
  }

  .timeline-shell-year .timeline-months {
    display: none;
  }

  .timeline-shell-year .timeline-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    height: auto;
  }

  .timeline-shell-year .timeline-base,
  .timeline-shell-year .timeline-range {
    display: none;
  }

  .timeline-shell-year .timeline-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    text-align: left;
  }

  .timeline-shell-year .timeline-marker::before {
    width: 18px;
    height: 18px;
    margin: 0;
    border-width: 4px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.82);
  }

  .timeline-heading-accent {
    width: 72px;
    height: 6px;
    margin-bottom: 1rem;
  }

  .timeline-header-row-year h3 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .timeline-header-copy {
    font-size: 0.94rem;
    white-space: normal;
  }

  .timeline-shell-year .timeline-marker span {
    display: inline-block;
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .leaderboard-row {
    grid-template-columns: 56px 1fr auto;
  }

  .leaderboard-row-meta {
    grid-column: 2 / -1;
    margin-top: -0.35rem;
  }

  .footer-wordmark {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.12em;
    font-size: clamp(3.5rem, 18vw, 5.8rem);
    line-height: 0.9;
    transform: translateY(6%);
  }

  .footer-wordmark-wrap {
    height: auto;
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .footer-bottom-row {
    flex-direction: column;
  }

  .winners-stat-strip,
  .winners-division-grid,
  .winners-summary-grid {
    grid-template-columns: 1fr;
  }

  .winners-archive-row,
  .winners-division-header {
    align-items: flex-start;
  }

  .winner-place-card,
  .winner-single-card {
    padding: 1.05rem;
  }

  .winners-accordion-item .accordion-button,
  .winners-accordion-body {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .winner-rank-card {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "order points"
      "copy copy";
    gap: 0.7rem;
    padding: 0.88rem 0.9rem 0.88rem 1rem;
  }

  .winner-rank-copy h4 {
    font-size: 1.08rem;
  }

  .winner-rank-points {
    min-width: 0;
    text-align: right;
  }

  .winner-rank-breakdown {
    gap: 0.4rem;
    margin-top: 0.45rem;
  }

  .winner-stat-chip {
    min-height: 30px;
    padding: 0.34rem 0.6rem;
  }
}

.winners-footer .footer-top-grid {
  grid-template-columns: minmax(0, 1.18fr) repeat(3, minmax(0, 0.72fr));
}

.winners-footer .footer-wordmark-wrap {
  margin-top: 3.2rem;
  margin-bottom: 0.55rem;
  height: clamp(170px, 20vw, 260px);
}

.winners-footer .footer-wordmark {
  justify-content: space-between;
  gap: 0.12em;
  box-sizing: border-box;
  padding-right: 0.025em;
  font-size: clamp(6.8rem, 19.4vw, 14.7rem);
  line-height: 0.76;
  font-weight: 900;
  letter-spacing: -0.03em;
  transform: translateY(8%);
}

@media (max-width: 1199px) {
  .winners-archive-grid {
    grid-template-columns: 1fr;
  }

  .winners-footer .footer-wordmark {
    font-size: clamp(5.85rem, 16.6vw, 10.8rem);
  }
}

@media (max-width: 991px) {
  .winners-page-hero {
    padding: 84px 0 72px 0;
  }

  .winners-toolbar {
    padding: 0.9rem;
  }

  .winners-page-hero .winners-year-switcher {
    min-height: 88px;
    padding: 0.92rem 1.05rem;
  }

  .winners-page-hero .winners-year-select {
    font-size: 1.35rem;
  }

  .winners-search-field {
    width: 100%;
  }

  .winners-overview-row {
    grid-template-columns: 36px minmax(0, 1fr) 56px 56px 64px;
    gap: 0.6rem;
    padding: 0.72rem 0.8rem;
  }

  .winners-year-panel {
    min-height: clamp(820px, 100vh, 1080px);
    align-content: start;
  }

  .winners-footer .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-partner-card-shield {
    min-height: 132px;
  }

  .winners-footer .footer-wordmark-wrap {
    height: clamp(136px, 18vw, 190px);
  }

  .winners-footer .footer-wordmark {
    font-size: clamp(5.2rem, 13.7vw, 8.5rem);
  }
}

@media (max-width: 767px) {
  .winners-page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem) !important;
  }

  .winners-year-switcher {
    width: 100%;
    padding: 0.72rem 0.85rem;
  }

  .winners-year-switcher-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .winners-year-select {
    font-size: 1rem;
  }

  .winners-page-hero .winners-year-switcher {
    min-height: 76px;
    margin-top: 0.7rem;
  }

  .winners-page-hero .winners-year-switcher-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.05rem;
  }

  .winners-page-hero .winners-year-select {
    font-size: 1.08rem;
  }

  .winners-archive-hub {
    padding-top: 1rem;
  }

  .winners-year-panel {
    min-height: clamp(720px, 92vh, 920px);
  }

  .winners-toolbar {
    border-radius: 24px;
    gap: 0.85rem;
  }

  .winners-filter-group {
    width: 100%;
    gap: 0.55rem;
  }

  .winners-filter-chip {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
    min-height: 42px;
    padding: 0.72rem 0.9rem;
    font-size: 0.82rem;
  }

  .winners-series-header h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    white-space: normal;
  }

  .winners-leaderboard-card,
  .winners-coming-card,
  .winners-title-body {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .winners-card-head {
    margin-bottom: 0.75rem;
  }

  .winners-card-head h3 {
    font-size: 1.18rem;
  }

  .winners-overview-head {
    display: none;
  }

  .winners-overview-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    grid-template-areas:
      "rank name total"
      ". meta total";
    gap: 0.45rem 0.7rem;
    min-height: auto;
  }

  .winners-overview-row > :nth-child(1) {
    grid-area: rank;
  }

  .winners-overview-row > :nth-child(2) {
    grid-area: name;
  }

  .winners-overview-row > :nth-child(3),
  .winners-overview-row > :nth-child(4) {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--ink-muted);
  }

  .winners-overview-row > :nth-child(3)::before {
    content: "OW";
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .winners-overview-row > :nth-child(4)::before {
    content: "VAL";
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .winners-overview-row > :nth-child(3) {
    grid-area: meta;
  }

  .winners-overview-row > :nth-child(4) {
    grid-area: meta;
    margin-left: 3.4rem;
  }

  .winners-overview-row strong {
    grid-area: total;
    font-size: 1rem;
  }

  .winners-title-item .accordion-button {
    gap: 0.6rem;
    min-height: 74px;
    padding: 0.9rem 1rem;
  }

  .winners-game-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .winners-game-points {
    grid-column: 2;
    justify-self: start;
  }

  .winners-coming-card {
    padding: 1.8rem 1.2rem;
  }

  .winners-coming-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    font-size: 1.65rem;
  }

  .footer-shell-statement {
    padding-bottom: 36px;
  }

  .footer-wordmark {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.08em;
    font-size: clamp(2.8rem, 14vw, 5rem);
    line-height: 0.84;
    transform: translateY(0);
  }

  .footer-wordmark-wrap {
    height: auto;
    margin-top: 2rem;
    margin-bottom: 0.45rem;
  }

  .footer-bottom-row {
    gap: 0.6rem;
  }

  .winners-footer .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-partner-card {
    min-height: 76px;
  }

  .footer-partner-card-shield {
    min-height: 124px;
  }

  .winners-footer .footer-wordmark {
    justify-content: flex-start;
    gap: 0.1em;
    font-size: clamp(3.15rem, 15.3vw, 5.4rem);
    letter-spacing: -0.02em;
  }

  .winners-footer .footer-wordmark-wrap {
    height: auto;
    margin-top: 2rem;
    margin-bottom: 0.45rem;
  }
}

/* Announcement Bar */
.announcement-bar {
  /* Change this one value to resize the ticker text. */
  --announcement-text-size: 12px;
  background: linear-gradient(
    135deg,
    var(--lime) 0%,
    #fff59d 52%,
    #ffffff 100%
  );
  min-height: var(--announcement-bar-height);
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1035;
  border-bottom: 1px solid rgba(10, 31, 84, 0.08);
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: scroll-announcement 70s linear infinite;
}

.announcement-content {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  white-space: nowrap;
  padding-right: clamp(1.8rem, 3vw, 3.4rem);
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--ink);
  font-size: var(--announcement-text-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-item::after {
  content: "\2022";
  margin-left: clamp(1.8rem, 3vw, 3.4rem);
  opacity: 0.72;
}

@keyframes scroll-announcement {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    animation: none;
  }
}
