:root {
  --bg-deep: #10211d;
  --bg-ink: #18302d;
  --bg-panel: rgba(255, 250, 239, 0.9);
  --bg-panel-strong: #fffaf1;
  --bg-accent: #d0692d;
  --bg-accent-soft: #f1c9ae;
  --bg-mint: #c8e6d2;
  --text-main: #14201d;
  --text-muted: #556764;
  --text-light: #fef9f1;
  --line: rgba(20, 32, 29, 0.12);
  --shadow: 0 24px 60px rgba(7, 19, 17, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --display-font: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body-font: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.22), transparent 36%),
    radial-gradient(circle at top right, rgba(200, 230, 210, 0.18), transparent 28%),
    linear-gradient(180deg, #17302c 0%, #0d1a18 100%);
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(20, 32, 29, 0.14);
  border-radius: 14px;
  color: var(--text-main);
  background: rgba(255, 250, 241, 0.96);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.page-chrome {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.45;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.topbar,
.site-nav,
.page-intro-panel,
.hero-panel,
.hero-checks-panel,
.showcase-panel,
.multi-sport-panel,
.slip-panel,
.board-panel,
.plays-panel,
.account-panel,
.leaderboard-panel,
.admin-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--radius-xl);
  color: var(--text-light);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, rgba(200, 230, 210, 0.08), rgba(208, 105, 45, 0.14));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(120deg, rgba(200, 230, 210, 0.1), rgba(208, 105, 45, 0.12));
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text-light);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(227, 255, 128, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

.site-nav__link--active {
  color: #10211d;
  border-color: rgba(227, 255, 128, 0.34);
  background: linear-gradient(135deg, #dff685, #a8f25c);
  box-shadow: 0 12px 24px rgba(168, 242, 92, 0.24);
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.76;
}

.brand,
.hero-title,
.page-intro__title,
.section-heading h3,
.auth-card h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.05em;
}

.brand {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.topbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.date-pill,
.ghost-button,
.primary-button,
.market-button,
.choice-button,
.quick-button {
  border-radius: 999px;
}

.date-pill {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button,
.primary-button,
.choice-button,
.quick-button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ghost-button {
  padding: 12px 18px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-button[aria-pressed="true"] {
  color: #f7ffef;
  background: rgba(168, 242, 92, 0.2);
  box-shadow: inset 0 0 0 1px rgba(168, 242, 92, 0.24);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--text-light);
  background: linear-gradient(135deg, #cb5e24, #e1884f);
  box-shadow: 0 14px 28px rgba(203, 94, 36, 0.28);
  text-decoration: none;
}

.ghost-button:hover,
.primary-button:hover,
.choice-button:hover,
.quick-button:hover {
  transform: translateY(-1px);
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.page-intro-panel,
.hero-panel,
.hero-checks-panel,
.showcase-panel,
.multi-sport-panel,
.board-panel,
.plays-panel,
.account-panel,
.leaderboard-panel,
.admin-panel,
.slip-panel {
  border-radius: var(--radius-xl);
  padding: 22px;
}

.page-intro-panel {
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 228, 0.94));
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.page-intro__copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.page-intro__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.94;
}

.page-intro__text {
  margin: 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.page-intro__note {
  width: fit-content;
  max-width: 56ch;
  padding: 12px 14px;
  border: 1px solid rgba(31, 92, 66, 0.16);
  border-radius: 18px;
  color: #1f5c42;
  background:
    radial-gradient(circle at top left, rgba(31, 92, 66, 0.1), transparent 42%),
    rgba(237, 245, 239, 0.88);
}

.page-intro__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas: "copy visual";
  gap: 20px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 228, 0.94));
}

.hero-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  gap: 14px;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(229, 255, 91, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(208, 105, 45, 0.12), transparent 34%),
    linear-gradient(145deg, #09120f 0%, #11231c 58%, #17312a 100%);
}

.hero-logo {
  width: min(100%, 760px);
}

.hero-logo__stage {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo__image {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  height: auto;
  filter:
    drop-shadow(0 28px 42px rgba(34, 255, 76, 0.16))
    drop-shadow(0 0 24px rgba(213, 255, 62, 0.2));
  animation: logo-float 4.8s ease-in-out infinite;
}

.hero-logo__aurora,
.hero-logo__shine,
.hero-logo__checklights {
  position: absolute;
  inset: 0;
}

.hero-logo__aurora {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.88;
}

.hero-logo__aurora--left {
  inset: 16% auto auto 4%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(127, 255, 61, 0.36), transparent 68%);
  animation: aurora-shift 5.5s ease-in-out infinite;
}

.hero-logo__aurora--right {
  inset: auto 6% 12% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 206, 58, 0.2), transparent 70%);
  animation: aurora-shift 5.5s ease-in-out infinite reverse;
}

.hero-logo__shine {
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.12) 42%,
    rgba(228, 255, 115, 0.34) 50%,
    rgba(255, 255, 255, 0) 58%
  );
  transform: translateX(-120%) skewX(-18deg);
  mix-blend-mode: screen;
  animation: logo-sheen 4.6s ease-in-out infinite;
}

.hero-logo__checklights {
  z-index: 5;
  pointer-events: none;
}

.hero-logo__check {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 4.2vw, 48px);
  height: clamp(34px, 4.2vw, 48px);
  border-radius: 50%;
  color: #0a180f;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 900;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.98), rgba(244, 255, 159, 0.92) 36%, rgba(122, 255, 55, 0.92) 100%);
  box-shadow:
    0 0 0 1px rgba(227, 255, 128, 0.28),
    0 0 0 rgba(227, 255, 128, 0);
  opacity: 0.44;
  transform: scale(0.92);
  animation: brand-check-light 3.4s ease-in-out infinite;
}

.hero-logo__check--1 {
  top: 18%;
  left: 10%;
  animation-delay: 0ms;
}

.hero-logo__check--2 {
  top: 34%;
  left: 6%;
  animation-delay: 480ms;
}

.hero-logo__check--3 {
  top: 52%;
  left: 2%;
  animation-delay: 960ms;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  line-height: 0.95;
}

.hero-text {
  margin: 0;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 1.16rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid rgba(208, 105, 45, 0.24);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a4219;
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.18), transparent 46%),
    linear-gradient(135deg, rgba(255, 246, 233, 1), rgba(255, 250, 241, 1));
  box-shadow: 0 12px 24px rgba(208, 105, 45, 0.12);
}

.hero-callout__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 900;
  background: linear-gradient(135deg, #cb5e24, #e1884f);
  box-shadow: 0 10px 22px rgba(203, 94, 36, 0.28);
  animation: money-pop 1.8s ease-in-out infinite;
}

.hero-stats,
.game-grid,
.play-grid,
.mini-grid,
.ticket-list,
.leaderboard-list {
  display: grid;
  gap: 14px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
}

.stat-card,
.game-card,
.play-card,
.account-card,
.leaderboard-card,
.ticket-card,
.transaction-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel-strong);
}

.stat-card,
.play-card,
.leaderboard-card,
.account-card {
  padding: 16px 18px;
}

.stat-card__value {
  margin: 6px 0 2px;
  font-size: 1.65rem;
  font-weight: 800;
}

.system-rule-card {
  grid-column: 1 / -1;
  padding: 22px;
  color: var(--text-light);
  background:
    radial-gradient(circle at top right, rgba(200, 230, 210, 0.24), transparent 34%),
    linear-gradient(135deg, #14302a, #1a423b 54%, #255148 100%);
}

.system-rule-card .eyebrow {
  opacity: 0.9;
}

.system-rule-card__head,
.hero-check-card__head,
.check-card__head,
.play-system-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.system-rule-card__value,
.play-system-banner__title {
  font-family: var(--display-font);
  letter-spacing: 0.05em;
  line-height: 0.92;
}

.system-rule-card__value {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.system-rule-card__meter,
.play-system-banner__checks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-rule-card__summary,
.system-rule-card__order,
.system-rule-card__note {
  max-width: 60ch;
}

.system-rule-card__summary {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(254, 249, 241, 0.88);
}

.system-rule-card__order,
.play-system-banner__order {
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 700;
}

.system-rule-card__order {
  margin-top: 10px;
  color: #dff4e8;
}

.system-rule-card__order--hero {
  margin-top: 16px;
  max-width: 32ch;
  font-size: 1rem;
  color: #eefbf4;
}

.system-rule-card__note {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bfe7d0;
}

.hero-checks-banner {
  grid-column: 1 / -1;
  padding: 18px 20px;
  color: var(--text-light);
  border: 1px solid rgba(170, 226, 194, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(222, 249, 231, 0.12), transparent 24%),
    linear-gradient(135deg, #14483f, #174f45 58%, #255148 100%);
}

.hero-checks-banner__copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-checks-banner__meter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-checks-banner__order,
.hero-checks-banner__note {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-checks-banner__order {
  margin-top: 10px;
  color: #dff4e8;
}

.hero-checks-banner__note {
  margin-top: 6px;
  color: #bfe7d0;
}

.hero-check-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.22), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.hero-check-card__title,
.check-card__title {
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 0.92;
}

.hero-check-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.hero-check-card__rule,
.check-card__rule {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1f5c42;
}

.hero-check-card--simple {
  min-height: 172px;
  align-content: space-between;
}

.hero-check-card--simple .hero-check-card__title {
  font-size: 1.65rem;
}

.hero-access-card {
  display: grid;
  align-content: start;
}

.stat-card__meta,
.muted,
.sources,
.ticket-meta,
.transaction-note {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.warning-banner {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(208, 105, 45, 0.12);
  color: #8a4219;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading__note {
  margin: 0;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
}

.section-heading h3 {
  font-size: 1.95rem;
  line-height: 0.95;
}

.game-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.game-card {
  padding: 18px;
  animation: rise-in 0.45s ease both;
  animation-delay: var(--delay, 0ms);
}

.card-head,
.ticket-head,
.leaderboard-row,
.play-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ticket-head > div {
  display: grid;
  gap: 4px;
}

.pill,
.result-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  background: var(--bg-mint);
  color: #1f5c42;
}

.pill--closed,
.result-badge--lose {
  background: #efd0d0;
  color: #903d3d;
}

.result-badge--win {
  background: #d6efe0;
  color: #226648;
}

.result-badge--push {
  background: #e7e3d4;
  color: #6b6242;
}

.matchup {
  margin: 14px 0 8px;
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.pitchers {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.market-button {
  display: grid;
  padding: 14px 14px 15px;
  text-align: left;
  background: #fff4e8;
  border: 1px solid rgba(208, 105, 45, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.market-button--locked {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 1), rgba(248, 238, 223, 1)),
    #fff4e8;
}

.market-button.is-active {
  color: var(--text-light);
  background: linear-gradient(135deg, #cb5e24, #e1884f);
  box-shadow: 0 14px 28px rgba(203, 94, 36, 0.22);
}

.market-button[disabled] {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.market-button__team {
  font-weight: 800;
}

.market-button__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 6px;
  font-weight: 800;
}

.market-button__fair,
.slip-meta,
.transaction-kind {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.market-button__fair {
  display: flex;
  align-items: center;
  gap: 6px;
}

.market-button__fair--locked {
  font-weight: 700;
}

.market-button__fair-blur {
  display: inline-flex;
  min-width: 2.8ch;
  justify-content: center;
  letter-spacing: 0.18em;
  color: #8a4219;
  filter: blur(3px);
  user-select: none;
}

.scoreline {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-weight: 700;
}

.board-preview-banner {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(208, 105, 45, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 236, 1), rgba(255, 250, 241, 1));
}

.board-preview-banner__eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a4219;
}

.board-preview-banner__text,
.game-card__lock-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.game-card__lock-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(208, 105, 45, 0.08);
}

.play-grid,
.ticket-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.play-grid {
  align-items: start;
}

.play-system-banner {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid rgba(31, 92, 66, 0.16);
  background:
    radial-gradient(circle at top left, rgba(200, 230, 210, 0.42), transparent 36%),
    linear-gradient(135deg, rgba(208, 105, 45, 0.08), rgba(255, 250, 241, 1));
  align-items: stretch;
}

.play-system-banner__copy {
  display: grid;
  gap: 10px;
}

.play-system-banner__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-main);
}

.play-system-banner__summary {
  max-width: 58ch;
  color: var(--text-muted);
  line-height: 1.6;
}

.play-system-banner__order {
  max-width: 56ch;
  color: #1f5c42;
}

.play-system-banner__meter {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 12px;
  min-width: 180px;
}

.play-system-banner__counter {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.06em;
  color: #1f5c42;
}

.league-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.showcase-hub-slot {
  margin-top: 18px;
}

.sport-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.league-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 236px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: none;
  animation: rise-in 0.45s ease both;
  animation-delay: var(--delay, 0ms);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.league-card:hover,
.league-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(227, 255, 128, 0.34);
  box-shadow: 0 22px 42px rgba(11, 22, 21, 0.28);
}

.league-card:focus-visible {
  outline: 3px solid rgba(227, 255, 128, 0.46);
  outline-offset: 3px;
}

.league-card--active {
  border-color: rgba(227, 255, 128, 0.42);
  box-shadow: 0 24px 44px rgba(13, 31, 24, 0.28);
}

.league-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.league-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 7px;
  padding: 15px;
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(11, 22, 21, 0.02), rgba(11, 22, 21, 0.84)),
    linear-gradient(135deg, rgba(208, 105, 45, 0.08), rgba(18, 35, 32, 0.08));
}

.league-card__meta,
.showcase-hub-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.league-card__overlay strong {
  font-family: var(--display-font);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.league-card__summary {
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(254, 249, 241, 0.88);
}

.league-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 2px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.14);
  color: rgba(254, 249, 241, 0.98);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-status--live {
  background: rgba(201, 255, 166, 0.2);
  color: #f6ffe3;
  border: 1px solid rgba(201, 255, 166, 0.28);
}

.showcase-status--soon {
  background: rgba(255, 226, 173, 0.16);
  color: #fff2d4;
  border: 1px solid rgba(255, 226, 173, 0.22);
}

.showcase-hub-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel-strong);
  box-shadow: var(--shadow);
}

.showcase-hub-card__hero {
  display: grid;
  gap: 10px;
  min-height: 250px;
  padding: 22px;
  align-content: end;
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(9, 19, 18, 0.16), rgba(9, 19, 18, 0.9)),
    linear-gradient(135deg, rgba(208, 105, 45, 0.12), rgba(18, 35, 32, 0.12));
  background-color: #17302c;
  background-size: cover;
  background-position: center;
}

.showcase-hub-card__hero strong {
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
}

.showcase-hub-card__body {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 22px;
}

.showcase-hub-card__note {
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(31, 92, 66, 0.1), transparent 40%),
    rgba(237, 245, 239, 0.9);
}

.showcase-hub-card__resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
  min-width: 0;
}

.showcase-hub-card .transaction-card {
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.16), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.sport-hub-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel-strong);
  animation: rise-in 0.45s ease both;
  animation-delay: var(--delay, 0ms);
  box-shadow: var(--shadow);
}

.sport-hub-card__hero {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  align-content: end;
  color: var(--text-light);
  background-color: #17302c;
  background-size: cover;
  background-position: center;
}

.sport-hub-card__hero strong {
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.sport-hub-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.sport-event-list {
  display: grid;
  gap: 12px;
}

.sport-event-card {
  background: #fff8f0;
}

.sport-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.premium-preview-card {
  background:
    linear-gradient(180deg, rgba(208, 105, 45, 0.08), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.league-pill,
.tier-badge,
.check-status,
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.league-pill,
.check-status {
  background: rgba(255, 250, 241, 0.18);
  color: var(--text-light);
}

.tier-badge {
  margin-bottom: 10px;
  background: rgba(208, 105, 45, 0.12);
  color: #8a4219;
}

.check-card {
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.2), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
  padding: 18px;
}

.play-card--cta,
.daily-pick-card {
  display: grid;
  gap: 14px;
}

.daily-pick-checks {
  display: grid;
  gap: 12px;
}

.daily-pick-check {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 32, 29, 0.1);
}

.daily-pick-check:first-child {
  padding-top: 0;
  border-top: 0;
}

.daily-pick-check__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.daily-pick-check__body {
  line-height: 1.65;
}

.daily-card-pdf-card {
  padding: 0;
  overflow: hidden;
}

.daily-card-pdf-frame {
  display: block;
  width: 100%;
  height: min(82vh, 920px);
  min-height: 620px;
  border: 0;
  background: #ffffff;
}

.play-card--cta {
  min-height: 210px;
  align-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(198, 241, 83, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(200, 230, 210, 0.14), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.check-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.check-card__head {
  align-items: center;
  justify-content: flex-start;
}

.check-card__summary {
  color: var(--text-muted);
  line-height: 1.6;
}

.check-seal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #dff4e8, #b9e6ce);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(31, 92, 66, 0.16);
}

.check-seal::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(31, 92, 66, 0.18);
  opacity: 0;
  animation: check-pulse 2.1s ease-out infinite;
  animation-delay: var(--delay, 0ms);
}

.check-seal__svg {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.check-seal__ring,
.check-seal__stroke {
  fill: none;
  stroke: #1f5c42;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-seal__ring {
  stroke-width: 2.2;
  opacity: 0.42;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: ring-draw 0.85s ease forwards;
  animation-delay: var(--delay, 0ms);
}

.check-seal__stroke {
  stroke-width: 4;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: check-draw 0.55s ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 220ms);
}

.account-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.leaderboard-card--wide {
  grid-column: 1 / -1;
}

.account-card--wide {
  grid-column: 1 / -1;
}

.account-card--highlight {
  background:
    radial-gradient(circle at top right, rgba(198, 241, 83, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(200, 230, 210, 0.18), rgba(255, 250, 241, 0.98)),
    var(--bg-panel-strong);
  border-color: rgba(31, 92, 66, 0.18);
}

.member-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.member-plan-block {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(20, 32, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.84);
}

.member-plan-block__price {
  font-size: 1.45rem;
  font-weight: 800;
}

.member-plan-block__title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-anchor {
  scroll-margin-top: 120px;
}

.mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.account-value {
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 800;
}

.start-here-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.start-here-step {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(20, 32, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.84);
}

.start-here-step strong {
  font-size: 1rem;
}

.start-here-step__number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #c6f153, #63d471);
  color: #102b1d;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(99, 212, 113, 0.2);
}

.deposit-buttons,
.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-button,
.choice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #edf5ef;
  color: var(--text-main);
  text-align: center;
  text-decoration: none;
}

.choice-button.is-active {
  background: linear-gradient(135deg, #cb5e24, #e1884f);
  color: var(--text-light);
}

.slip-panel input,
.auth-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
}

.stack {
  display: grid;
  gap: 12px;
}

.stack label {
  display: grid;
  gap: 7px;
}

.auth-banner {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(208, 105, 45, 0.22);
  border-radius: 16px;
  color: #8a4219;
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(255, 246, 233, 1), rgba(255, 250, 241, 1));
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.admin-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel-strong);
}

.admin-card--wide {
  grid-column: 1 / -1;
}

.admin-form {
  gap: 12px;
}

.admin-form--topline {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.admin-daily-bets-list {
  display: grid;
  gap: 14px;
}

.admin-daily-bet-row {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(20, 32, 29, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.94);
}

.admin-daily-bet-row__head {
  align-items: center;
}

.admin-advanced-toggle {
  display: grid;
  gap: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(20, 32, 29, 0.16);
  border-radius: 16px;
  background: rgba(237, 245, 239, 0.5);
}

.admin-advanced-toggle summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-strong);
}

.admin-advanced-toggle[open] summary {
  margin-bottom: 8px;
}

.admin-member-list {
  display: grid;
  gap: 12px;
}

.admin-member-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff6ea;
}

.admin-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.admin-switch input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
}

.admin-button {
  width: fit-content;
}

.upload-result {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px dashed rgba(20, 32, 29, 0.18);
  border-radius: 16px;
  background: rgba(237, 245, 239, 0.68);
}

.asset-library {
  display: grid;
  gap: 10px;
}

.asset-card {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 32, 29, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.94);
}

.asset-card__meta,
.asset-card__url {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.asset-card__url {
  word-break: break-all;
}

.slip-card {
  display: grid;
  gap: 14px;
}

.slip-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.slip-line:last-child {
  border-bottom: 0;
}

.ticket-card,
.transaction-card {
  padding: 14px 16px;
}

.resource-meta {
  margin-top: 8px;
}

.ticket-list--videos {
  grid-template-columns: 1fr;
}

.transaction-card--video {
  padding: 18px;
}

.video-embed-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 29, 0.08);
  border-radius: 18px;
  background: #091312;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}

.video-embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.profit-positive {
  color: #20724b;
}

.profit-negative {
  color: #9c403a;
}

.leaderboard-list {
  grid-template-columns: 1fr;
}

.leaderboard-card {
  display: grid;
  gap: 14px;
}

.process-document {
  gap: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(198, 241, 83, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(247, 243, 234, 0.98)),
    var(--bg-panel-strong);
}

.process-document__header,
.process-document__section,
.process-document__footer {
  display: grid;
  gap: 12px;
}

.process-document__section {
  padding-top: 20px;
  border-top: 1px solid rgba(20, 32, 29, 0.1);
}

.process-document__section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.process-document__rule {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(198, 241, 83, 0.2);
  color: #1f5c42;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.process-document__check-head,
.process-document__check-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.process-document__check-title {
  justify-content: flex-start;
}

.process-document__section-title {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.process-document__paragraph {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.league-content-card {
  background:
    radial-gradient(circle at top right, rgba(198, 241, 83, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(200, 230, 210, 0.16), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.league-content-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nfl-keys-card {
  display: grid;
  gap: 18px;
}

.nfl-keys-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.nfl-keys-picker,
.nfl-keys-scoreboard {
  display: grid;
  gap: 12px;
}

.nfl-keys-picker {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
}

.nfl-keys-control {
  display: grid;
  gap: 8px;
}

.nfl-keys-control span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nfl-keys-control select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-panel-strong);
  color: var(--text-main);
  font: inherit;
  font-weight: 800;
  padding: 0 12px;
}

.nfl-keys-control select:focus {
  outline: 3px solid rgba(31, 92, 66, 0.18);
  border-color: rgba(31, 92, 66, 0.42);
}

.nfl-keys-versus {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--text-main);
  color: var(--text-light);
  font-weight: 900;
}

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

.nfl-keys-team-card {
  border-top: 7px solid var(--nfl-team-color, var(--bg-accent));
}

.nfl-keys-team-header,
.nfl-keys-key-list,
.nfl-keys-notes {
  display: grid;
  gap: 12px;
}

.nfl-keys-key-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.nfl-keys-key-row:first-child {
  border-top: 0;
}

.nfl-keys-target {
  white-space: nowrap;
}

.nfl-keys-table {
  min-width: 880px;
}

.nfl-advanced-card,
.nfl-advanced-view,
.nfl-advanced-blueprint,
.nfl-advanced-stat-stack {
  display: grid;
  gap: 18px;
}

.nfl-advanced-tabs {
  margin-top: 2px;
}

.nfl-advanced-note {
  padding: 12px 14px;
  border: 1px solid rgba(31, 92, 66, 0.14);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  background: rgba(200, 230, 210, 0.18);
  line-height: 1.55;
}

.nfl-advanced-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nfl-advanced-kpi,
.nfl-advanced-term {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 1), rgba(244, 248, 244, 0.98)),
    var(--bg-panel-strong);
}

.nfl-advanced-kpi span,
.nfl-advanced-flow span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nfl-advanced-kpi strong {
  font-size: 1.65rem;
  line-height: 1;
}

.nfl-advanced-kpi small {
  color: var(--text-muted);
  line-height: 1.35;
}

.nfl-advanced-table-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.football-advanced-conference-control {
  min-width: 180px;
  margin-left: auto;
}

.nfl-advanced-matchup-controls .football-advanced-conference-control {
  margin-left: 0;
}

.nfl-advanced-table {
  min-width: 980px;
  font-size: 0.82rem;
  border-collapse: separate;
  border-spacing: 0;
}

.nfl-advanced-table th,
.nfl-advanced-table td {
  padding: 9px 10px;
}

.nfl-advanced-card .transparency-table-wrap,
.nfl-advanced-matchup-card .transparency-table-wrap {
  max-height: min(72vh, 720px);
  overflow: auto;
  position: relative;
}

.nfl-advanced-table th,
.nfl-advanced-matchup-table th {
  position: sticky;
  top: 0;
  z-index: 8;
  background: linear-gradient(180deg, #fffaf1 0%, #f4f8f4 100%);
  background-clip: padding-box;
  box-shadow:
    0 1px 0 rgba(20, 32, 29, 0.14),
    0 10px 14px rgba(255, 250, 241, 0.98);
}

.nfl-advanced-sort-button {
  cursor: pointer;
}

.nfl-advanced-sort-button span {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.nfl-advanced-blueprint {
  padding: 16px;
  border: 1px solid rgba(20, 32, 29, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(208, 105, 45, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 1), rgba(244, 248, 244, 0.98));
}

.nfl-advanced-stat-stack {
  padding: 16px;
  border: 1px solid rgba(31, 92, 66, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(244, 248, 244, 1), rgba(255, 250, 241, 0.98)),
    var(--bg-panel-strong);
}

.nfl-advanced-flow,
.nfl-advanced-dictionary {
  display: grid;
  gap: 10px;
}

.nfl-advanced-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nfl-advanced-flow span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(200, 230, 210, 0.2);
  text-align: center;
}

.nfl-advanced-blueprint-table {
  min-width: 1020px;
  white-space: normal;
}

.nfl-advanced-stat-stack-table {
  min-width: 1160px;
  white-space: normal;
}

.nfl-advanced-blueprint-table th,
.nfl-advanced-blueprint-table td,
.nfl-advanced-stat-stack-table th,
.nfl-advanced-stat-stack-table td {
  white-space: normal;
  vertical-align: top;
  line-height: 1.45;
}

.nfl-advanced-dictionary {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.nfl-advanced-term strong {
  font-size: 1.05rem;
}

.nfl-advanced-matchup-card,
.nfl-advanced-matchup-stack,
.nfl-advanced-matchup-block {
  display: grid;
  gap: 16px;
}

.nfl-advanced-matchup-card {
  padding: 16px;
  border: 1px solid rgba(31, 92, 66, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(244, 248, 244, 1), rgba(255, 250, 241, 0.98)),
    var(--bg-panel-strong);
}

.nfl-advanced-matchup-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.nfl-advanced-matchup-block {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.82);
}

.nfl-advanced-matchup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.nfl-advanced-matchup-stat {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(20, 32, 29, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
}

.nfl-advanced-matchup-stat span,
.nfl-advanced-matchup-stat small {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nfl-advanced-matchup-stat strong {
  font-size: 1.15rem;
}

.nfl-advanced-matchup-table {
  min-width: 880px;
  font-size: 0.8rem;
  border-collapse: separate;
  border-spacing: 0;
}

.nfl-advanced-edge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(200, 230, 210, 0.34);
  color: var(--text-strong);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.mlb-advanced-card,
.mlb-advanced-panel,
.mlb-advanced-report-card {
  display: grid;
  gap: 16px;
}

.mlb-advanced-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mlb-advanced-tabs--primary {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.mlb-advanced-tabs .quick-button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.mlb-advanced-tabs--primary .quick-button {
  min-height: 42px;
  font-size: 0.84rem;
}

.mlb-advanced-panel > .leaderboard-card,
.mlb-advanced-panel > .mlb-batting-card {
  box-shadow: none;
}

.mlb-advanced-report-frame {
  width: 100%;
  min-height: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.mlb-handicap-card {
  display: grid;
  gap: 18px;
}

.mlb-handicap-stack {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(31, 92, 66, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(244, 248, 244, 0.98)),
    var(--bg-panel-strong);
}

.mlb-handicap-stack-head {
  display: grid;
  gap: 4px;
}

.mlb-handicap-stack-head strong {
  font-size: 1.12rem;
}

.mlb-handicap-block {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.mlb-handicap-block-head {
  display: grid;
  gap: 4px;
}

.mlb-handicap-block-head span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlb-handicap-block-head strong {
  font-size: 1rem;
}

.mlb-handicap-block-head small {
  color: var(--text-muted);
  line-height: 1.35;
}

.mlb-rbi-qualified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(31, 92, 66, 0.34);
  border-radius: var(--radius-sm);
  color: #174b35;
  background: rgba(193, 228, 202, 0.74);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mlb-rbi-qualified-badge--watch {
  border-color: rgba(165, 104, 18, 0.34);
  color: #6e4410;
  background: rgba(247, 218, 150, 0.56);
}

.mlb-rbi-qualified-badge--score {
  border-color: rgba(26, 37, 54, 0.14);
  color: var(--text-muted);
  background: rgba(244, 248, 244, 0.86);
}

.mlb-handicap-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mlb-handicap-stat {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(26, 37, 54, 0.09);
  border-radius: var(--radius-sm);
  background: #fff;
}

.mlb-handicap-stat span {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mlb-handicap-stat .mlb-stat-help {
  display: inline-block;
  cursor: help;
  text-decoration: underline dotted rgba(26, 37, 54, 0.32);
  text-underline-offset: 3px;
  transition: color 140ms ease, transform 140ms ease;
}

.mlb-handicap-stat .mlb-stat-help:hover,
.mlb-handicap-stat .mlb-stat-help:focus-visible {
  color: var(--accent-strong);
  transform: scale(1.04);
}

.mlb-handicap-stat strong {
  font-size: 1rem;
  line-height: 1.1;
}

.mlb-player-lifetime-block {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(245, 249, 246, 0.96)),
    #fff;
}

.mlb-player-lifetime-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(26, 37, 54, 0.09);
  border-radius: var(--radius-sm);
  background: #fff;
}

.mlb-prop-sticky-table-wrap {
  max-height: min(72vh, 760px);
  overflow: auto;
  position: relative;
}

.mlb-player-lifetime-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.mlb-player-lifetime-table th,
.mlb-player-lifetime-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(26, 37, 54, 0.08);
  text-align: left;
  vertical-align: top;
}

.mlb-player-lifetime-table thead th {
  color: var(--text-muted);
  background: rgba(244, 248, 244, 0.96);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mlb-player-lifetime-table thead th small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.mlb-handicap-table-help,
.mlb-handicap-stat-label {
  display: inline-block;
  border-bottom: 1px dotted rgba(31, 92, 66, 0.48);
  cursor: help;
  transition: color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.mlb-handicap-table-help:hover,
.mlb-handicap-table-help:focus-visible,
.mlb-handicap-stat-label:hover,
.mlb-handicap-stat-label:focus-visible {
  color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
  transform: scale(1.04);
}

.mlb-prop-sticky-table-wrap .mlb-player-lifetime-table thead th {
  position: sticky;
  top: 0;
  z-index: 6;
  background: #f4f8f4;
  background-clip: padding-box;
  box-shadow: 0 2px 0 rgba(26, 37, 54, 0.12);
}

.mlb-player-lifetime-table tbody th {
  width: 118px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mlb-player-lifetime-table td strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.1;
}

.mlb-player-lifetime-table td small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.mlb-player-lifetime-table tbody tr:last-child th,
.mlb-player-lifetime-table tbody tr:last-child td {
  border-bottom: 0;
}

.mlb-batting-card {
  display: grid;
  gap: 18px;
}

.mlb-batting-controls {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.mlb-batting-controls label {
  display: grid;
  gap: 8px;
  min-width: min(100%, 240px);
}

.mlb-batting-controls .mlb-handicap-game-control {
  min-width: min(100%, 380px);
  flex: 1 1 380px;
}

.mlb-batting-controls span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlb-batting-controls select {
  min-height: 46px;
  border-radius: var(--radius-md);
}

.mlb-batting-note {
  padding: 12px 14px;
  border: 1px solid rgba(31, 92, 66, 0.14);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  background: rgba(200, 230, 210, 0.18);
  line-height: 1.55;
}

.mlb-batting-guide-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 1), rgba(244, 248, 244, 0.98)),
    var(--bg-panel-strong);
}

.mlb-batting-guide-panel .eyebrow {
  margin-bottom: 5px;
}

.mlb-batting-guide-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.mlb-batting-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mlb-batting-kpi,
.mlb-batting-term {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 1), rgba(244, 248, 244, 0.98)),
    var(--bg-panel-strong);
}

.mlb-batting-kpi span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlb-batting-kpi strong {
  font-size: 1.65rem;
  line-height: 1;
}

.mlb-batting-kpi small {
  color: var(--text-muted);
  line-height: 1.35;
}

.mlb-batting-table-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mlb-batting-table {
  min-width: 1280px;
  font-size: 0.78rem;
}

.mlb-sticky-table-wrap {
  max-height: min(72vh, 720px);
  overflow: auto;
}

.mlb-sticky-table-wrap .mlb-batting-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(245, 248, 244, 0.98)),
    var(--bg-panel-strong);
  box-shadow: 0 1px 0 var(--line), 0 8px 12px rgba(24, 33, 45, 0.06);
}

.mlb-team-stats-table {
  min-width: 1320px;
  table-layout: auto;
}

.mlb-team-stats-table th,
.mlb-team-stats-table td {
  padding: 7px 8px;
  font-size: 0.72rem;
}

.mlb-team-stats-table .is-numeric-stat {
  text-align: right;
}

.mlb-team-stats-table td:nth-child(2) {
  min-width: 150px;
  white-space: normal;
}

.mlb-batting-table th,
.mlb-batting-table td {
  padding: 8px 9px;
}

.mlb-batting-table th.is-active-sort-column,
.mlb-batting-table td.is-active-sort-column {
  background: rgba(44, 123, 229, 0.12);
}

.mlb-batting-table th.is-active-sort-column {
  box-shadow: inset 0 -2px 0 rgba(44, 123, 229, 0.38);
}

.mlb-batting-table tbody tr:hover td.is-active-sort-column {
  background: rgba(44, 123, 229, 0.18);
}

.mlb-batting-table td:nth-child(2) {
  min-width: 118px;
  white-space: normal;
}

.mlb-batting-table td:nth-child(n+3) {
  text-align: right;
}

#mlb-batting-leaders {
  width: min(100%, calc(100vw - 20px));
}

#mlb-batting-leaders .transparency-table-wrap {
  justify-self: center;
  width: min(100%, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  margin-inline: -4px;
  border-radius: var(--radius-sm);
}

#mlb-batting-leaders .mlb-batting-leaders-table {
  min-width: 1220px;
  table-layout: fixed;
  font-size: 0.6rem;
}

#mlb-batting-leaders .mlb-batting-leaders-table th,
#mlb-batting-leaders .mlb-batting-leaders-table td {
  padding: 4px 3px;
  line-height: 1.12;
}

#mlb-batting-leaders .mlb-batting-leaders-table th {
  font-size: 0.5rem;
  letter-spacing: 0.02em;
}

#mlb-batting-leaders .mlb-batting-leaders-table .table-sort-button {
  justify-content: center;
  gap: 2px;
}

#mlb-batting-leaders .mlb-batting-leaders-table .table-sort-direction {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0;
}

#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(1),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(1) {
  width: 30px;
}

#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(2),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(2) {
  width: 108px;
  min-width: 108px;
  white-space: normal;
}

#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(3),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(3) {
  width: 36px;
}

#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(n+4),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(n+4) {
  width: 40px;
  text-align: right;
}

#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(7),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(7),
#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(8),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(8),
#mlb-batting-leaders .mlb-batting-leaders-table th:nth-child(20),
#mlb-batting-leaders .mlb-batting-leaders-table td:nth-child(20) {
  width: 50px;
}

.table-sort-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  font-weight: 900;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.table-sort-direction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 4px;
  border-radius: 999px;
  background: rgba(44, 123, 229, 0.14);
  color: var(--text-main);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.table-sort-button.is-active,
.table-sort-button:hover,
.table-sort-button:focus-visible {
  color: var(--text-main);
  text-decoration: underline;
}

.mlb-batting-dictionary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.mlb-batting-term strong {
  font-size: 1.02rem;
}

.ncaab-ratings-card {
  display: grid;
  gap: 18px;
}

.ncaab-ratings-heading,
.ncaab-ratings-controls,
.ncaab-ratings-meta {
  display: flex;
  gap: 14px;
}

.ncaab-ratings-heading {
  align-items: flex-start;
  justify-content: space-between;
}

.ncaab-ratings-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ncaab-rating-stat {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.18), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.ncaab-rating-stat span,
.ncaab-ratings-controls span,
.ncaab-ratings-meta,
.table-rank {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ncaab-rating-stat strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.ncaab-rating-stat small {
  color: var(--text-muted);
  line-height: 1.35;
}

.ncaab-ratings-controls {
  align-items: end;
  flex-wrap: wrap;
}

.ncaab-ratings-controls label {
  display: grid;
  gap: 8px;
  min-width: min(100%, 190px);
}

.ncaab-ratings-controls input,
.ncaab-ratings-controls select {
  min-height: 46px;
  border-radius: var(--radius-md);
}

.ncaab-ratings-meta {
  flex-wrap: wrap;
}

.ncaab-ratings-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(200, 230, 210, 0.16);
}

.ncaab-table-conference-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
}

.ncaab-table-conference-control label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ncaab-table-conference-control select {
  min-height: 30px;
  max-width: 180px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 800;
}

.ncaab-ratings-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  font-size: 0.78rem;
}

.nba-ratings-sticky-table-wrap {
  max-height: min(72vh, 720px);
  overflow: auto;
}

.nba-ratings-sticky-table-wrap .ncaab-ratings-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(245, 248, 244, 0.98)),
    var(--bg-panel-strong);
  box-shadow: 0 1px 0 var(--line), 0 8px 12px rgba(24, 33, 45, 0.06);
}

.ncaab-ratings-table th,
.ncaab-ratings-table td {
  padding: 8px 6px;
  line-height: 1.25;
  vertical-align: top;
}

.ncaab-ratings-table th {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.ncaab-sort-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  font-weight: 900;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

.ncaab-sort-button small {
  min-width: 1ch;
  color: #d0692d;
  font-size: 0.68rem;
  line-height: 1;
}

.ncaab-sort-button.is-active span {
  color: var(--text-main);
}

.ncaab-sort-button:hover span,
.ncaab-sort-button:focus-visible span {
  text-decoration: underline;
}

.nba-ratings-stat-trigger span,
.nba-ratings-stat-label {
  border-bottom: 1px dotted rgba(23, 107, 134, 0.55);
  cursor: help;
}

.nba-ratings-stat-trigger:hover span,
.nba-ratings-stat-trigger:focus-visible span,
.nba-ratings-stat-label:hover {
  color: var(--text-main);
  border-bottom-color: var(--bg-accent);
}

.ncaab-ratings-table td:nth-child(2),
.ncaab-factors-table td:nth-child(2) {
  min-width: 0;
  padding-right: 9px;
  border-right: 1px solid rgba(20, 32, 29, 0.1);
  text-align: left;
  white-space: normal;
}

.ncaab-ratings-table td:nth-child(3),
.ncaab-factors-table td:nth-child(3) {
  padding-left: 10px;
  color: var(--text-muted);
  font-weight: 800;
  text-align: left;
}

.ncaab-ratings-table td:nth-child(2) strong,
.ncaab-ratings-table td:nth-child(3),
.ncaab-factors-table td:nth-child(2),
.ncaab-factors-table td:nth-child(3) {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.ncaab-ratings-table td:nth-child(2) strong,
.ncaab-team-link {
  display: block;
  max-width: 100%;
  font-size: 0.62rem;
  line-height: 1.06;
}

.ncaab-ratings-table td:nth-child(3),
.ncaab-ratings-table th:nth-child(3),
.ncaab-factors-table td:nth-child(3),
.ncaab-factors-table th:nth-child(3) {
  font-size: 0.56rem;
  line-height: 1.06;
  white-space: normal;
}

.ncaab-ratings-table td:nth-child(n+4) {
  font-variant-numeric: tabular-nums;
}

.ncaab-ratings-table .ticket-meta {
  margin-top: 2px;
  font-size: 0.48rem;
  line-height: 1.06;
}

.ncaab-ratings-table .table-rank {
  display: block;
  margin-top: 2px;
  font-size: 0.56rem;
  line-height: 1.15;
  white-space: nowrap;
}

.ncaab-ratings-col-rank {
  width: 42px;
}

.ncaab-ratings-col-team {
  width: 138px;
}

.ncaab-ratings-col-conf {
  width: 108px;
}

.ncaab-ratings-col-record {
  width: 48px;
}

.ncaab-ratings-col-rating {
  width: 58px;
}

.ncaab-ratings-col-eff {
  width: 62px;
}

.ncaab-ratings-col-small {
  width: 54px;
}

.ncaab-ratings-col-factor {
  width: 46px;
}

.ncaab-rating-rank {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--text-light);
  background: var(--text-main);
  font-weight: 900;
}

.ncaab-ratings-method {
  line-height: 1.55;
}

.ncaab-ratings-compare-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.12), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.ncaab-rating-comparison-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  font-size: 0.78rem;
}

.ncaab-rating-comparison-table th,
.ncaab-rating-comparison-table td {
  white-space: normal;
}

.ncaab-rating-comparison-table th:first-child,
.ncaab-rating-comparison-table td:first-child {
  width: 120px;
}

.ncaab-rating-comparison-table th:last-child,
.ncaab-rating-comparison-table td:last-child {
  width: 150px;
}

.ncaab-chart-switcher {
  display: grid;
  gap: 6px;
  min-width: min(100%, 190px);
}

.ncaab-chart-switcher span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ncaab-chart-switcher select {
  min-height: 42px;
  border-radius: 999px;
}

.ncaab-factors-card {
  display: grid;
  gap: 18px;
}

.ncaab-matchup-grid,
.ncaab-distribution-grid {
  display: grid;
  gap: 14px;
}

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

.ncaab-distribution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ncaab-matchup-card,
.ncaab-distribution-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.12), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.transparency-table.ncaab-matchup-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  font-size: 0.72rem;
}

.transparency-table.ncaab-matchup-table th,
.transparency-table.ncaab-matchup-table td {
  padding: 8px 6px;
  white-space: normal;
}

.ncaab-matchup-edge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ncaab-matchup-edge--offense {
  color: #12412f;
  background: rgba(52, 168, 83, 0.18);
}

.ncaab-matchup-edge--defense {
  color: #7d2c16;
  background: rgba(208, 105, 45, 0.18);
}

.ncaab-matchup-edge--balanced {
  color: var(--text-muted);
  background: rgba(200, 230, 210, 0.2);
}

.ncaab-distribution-bars {
  display: grid;
  gap: 9px;
}

.ncaab-distribution-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 48px;
  gap: 8px;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
}

.ncaab-distribution-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 32, 29, 0.1);
}

.ncaab-distribution-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #1f5c42, #d0692d);
}

.ncaab-factors-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  font-size: 0.58rem;
}

.nba-factors-sticky-table-wrap {
  max-height: min(72vh, 720px);
  overflow: auto;
}

.nba-factors-sticky-table-wrap .ncaab-factors-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(245, 248, 244, 0.98)),
    var(--bg-panel-strong);
  box-shadow: 0 1px 0 var(--line), 0 8px 12px rgba(24, 33, 45, 0.06);
}

.ncaab-factors-table th,
.ncaab-factors-table td {
  padding: 5px 3px;
  line-height: 1.12;
}

.ncaab-factors-table th {
  font-size: 0.5rem;
  letter-spacing: 0;
}

.ncaab-factors-table td:nth-child(n+4) {
  font-variant-numeric: tabular-nums;
}

.ncaab-factors-table .ncaab-sort-button {
  gap: 1px;
}

.ncaab-factors-table .ncaab-sort-button small {
  min-width: 0.7ch;
  font-size: 0.5rem;
}

.nba-factors-stat-trigger span,
.nba-factors-stat-label {
  border-bottom: 1px dotted rgba(23, 107, 134, 0.55);
  cursor: help;
}

.nba-factors-stat-trigger:hover span,
.nba-factors-stat-trigger:focus-visible span,
.nba-factors-stat-label:hover {
  color: var(--text-main);
  border-bottom-color: var(--bg-accent);
}

.ncaab-factors-table .table-rank {
  display: block;
  margin-top: 1px;
  color: var(--text-muted);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.ncaab-factors-col-rank {
  width: 30px;
}

.ncaab-factors-col-team {
  width: 112px;
}

.ncaab-factors-col-conf {
  width: 86px;
}

.ncaab-factors-col-stat {
  width: 5.4%;
}

.ncaab-factors-table .ncaab-rating-rank {
  min-width: 22px;
  height: 22px;
  font-size: 0.58rem;
}

.ncaab-team-link {
  display: block;
  max-width: 100%;
  padding: 0;
  border: 0;
  color: var(--text-main);
  background: none;
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.nfl-keys-alignment--strong {
  background: rgba(52, 168, 83, 0.16);
  color: #146c37;
}

.nfl-keys-alignment--moderate {
  background: rgba(245, 158, 11, 0.18);
  color: #8a5a00;
}

.nfl-keys-alignment--weak {
  background: rgba(220, 38, 38, 0.13);
  color: #9b1c1c;
}

.transparency-metric-grid,
.transparency-market-grid {
  display: grid;
  gap: 14px;
}

.transparency-metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.transparency-metric-card,
.transparency-check-card {
  display: grid;
  gap: 10px;
}

.transparency-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.transparency-table-block {
  display: grid;
  gap: 12px;
}

.transparency-market-results {
  display: grid;
  gap: 12px;
}

.transparency-table-wrap {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.transparency-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.transparency-table th,
.transparency-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.transparency-table th {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transparency-table tbody tr:last-child td {
  border-bottom: 0;
}

.transparency-table .is-highlighted td {
  background: rgba(198, 241, 83, 0.18);
  font-weight: 800;
}

.official-card-results-table {
  min-width: 0;
  table-layout: fixed;
  font-size: 0.82rem;
}

.official-card-results-table th,
.official-card-results-table td {
  padding: 9px 8px;
  line-height: 1.35;
  vertical-align: top;
}

.official-card-results-table th:nth-child(1),
.official-card-results-table td:nth-child(1) {
  width: 24%;
  white-space: normal;
}

.official-card-results-table th:nth-child(2),
.official-card-results-table td:nth-child(2) {
  width: 34%;
  white-space: normal;
}

.official-card-results-table th:nth-child(3),
.official-card-results-table td:nth-child(3),
.official-card-results-table th:nth-child(5),
.official-card-results-table td:nth-child(5),
.official-card-results-table th:nth-child(6),
.official-card-results-table td:nth-child(6),
.official-card-results-table th:nth-child(7),
.official-card-results-table td:nth-child(7),
.official-card-results-table th:nth-child(8),
.official-card-results-table td:nth-child(8) {
  width: 7%;
  text-align: right;
}

.official-card-results-table th:nth-child(4),
.official-card-results-table td:nth-child(4) {
  width: 10%;
  text-align: right;
}

.transparency-status {
  align-self: center;
  justify-self: start;
}

.transparency-status.is-active {
  background: rgba(198, 241, 83, 0.24);
  color: var(--text-strong);
}

.league-content-notes {
  gap: 0;
}

.league-content-notes .leaderboard-row strong {
  font-size: 0.96rem;
  line-height: 1.55;
}

.league-content-anchor {
  scroll-margin-top: 104px;
}

.league-highlight-grid,
.league-story-grid {
  display: grid;
  gap: 14px;
}

.league-highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.league-highlight-card {
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.14), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.league-story-card,
.league-sidebar-card,
.league-team-board-card,
.league-team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel-strong);
}

.league-story-card,
.league-team-board-card,
.league-team-card {
  padding: 18px;
}

.league-story-card {
  display: grid;
  gap: 12px;
}

.league-sidebar-card {
  padding: 16px 18px;
}

.league-team-board-card {
  display: grid;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(31, 92, 66, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(200, 230, 210, 0.12), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.league-team-group {
  display: grid;
  gap: 14px;
}

.league-team-group + .league-team-group {
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.league-team-group__header {
  display: grid;
  gap: 6px;
}

.league-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}

.league-team-card {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 1), rgba(244, 248, 244, 0.98)),
    var(--bg-panel-strong);
}

.league-team-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.league-team-card__section {
  display: grid;
  gap: 8px;
}

.league-team-card__label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.league-need-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.league-need-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #17302c;
  background: rgba(200, 230, 210, 0.9);
  box-shadow: inset 0 0 0 1px rgba(31, 92, 66, 0.1);
}

.league-snapshot-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.league-snapshot-list {
  grid-template-columns: 1fr;
}

.league-score-card {
  background:
    linear-gradient(180deg, rgba(200, 230, 210, 0.16), rgba(255, 250, 241, 1)),
    var(--bg-panel-strong);
}

.league-score-card__scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.96rem;
}

.league-score-card__scoreline + .league-score-card__scoreline {
  border-top: 1px solid var(--line);
}

.leaderboard-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.leaderboard-row:last-child {
  border-bottom: 0;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 17, 0.68);
  backdrop-filter: blur(10px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  margin: 7vh auto 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.auth-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(20, 32, 29, 0.08);
}

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 240px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-light);
  background: rgba(15, 30, 28, 0.92);
  box-shadow: var(--shadow);
}

.toast--error {
  background: rgba(130, 39, 34, 0.95);
}

.layout-guide-target {
  position: relative;
  outline: 3px solid rgba(168, 242, 92, 0.52);
  outline-offset: -3px;
}

.layout-guide-target::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(168, 242, 92, 0.06), rgba(255, 191, 47, 0.03));
  pointer-events: none;
}

.layout-guide-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 9;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  max-width: min(320px, calc(100% - 24px));
  padding: 10px 12px;
  border-radius: 18px;
  color: #fffdf8;
  background: rgba(7, 19, 17, 0.94);
  box-shadow: 0 16px 34px rgba(7, 19, 17, 0.34);
  pointer-events: none;
}

.layout-guide-badge__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: var(--display-font);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #0f1d18;
  background: linear-gradient(135deg, #ffbf2f, #a8f25c);
}

.layout-guide-badge__copy {
  display: grid;
  gap: 2px;
}

.layout-guide-badge__copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.layout-guide-badge__copy span {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.layout-guide-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  width: min(330px, calc(100% - 28px));
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(168, 242, 92, 0.22);
  border-radius: 22px;
  color: #fffdf8;
  background:
    radial-gradient(circle at top right, rgba(168, 242, 92, 0.12), transparent 42%),
    rgba(7, 19, 17, 0.94);
  box-shadow: 0 22px 48px rgba(7, 19, 17, 0.34);
}

.layout-guide-panel__eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8f25c;
}

.empty-state {
  padding: 18px;
  color: var(--text-muted);
}

.footer {
  padding: 18px 4px 0;
  color: rgba(255, 250, 239, 0.78);
  font-size: 0.92rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ring-draw {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes check-draw {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes check-pulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  20% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes money-pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 22px rgba(203, 94, 36, 0.28);
  }
  50% {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 14px 26px rgba(203, 94, 36, 0.34);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes aurora-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -10px, 0) scale(1.08);
  }
}

@keyframes logo-sheen {
  0%,
  18% {
    transform: translateX(-128%) skewX(-18deg);
    opacity: 0;
  }
  26% {
    opacity: 1;
  }
  44% {
    transform: translateX(128%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    transform: translateX(128%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes brand-check-light {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.9);
    box-shadow:
      0 0 0 1px rgba(227, 255, 128, 0.18),
      0 0 0 rgba(227, 255, 128, 0);
  }
  18% {
    opacity: 1;
    transform: scale(1.12);
    box-shadow:
      0 0 0 1px rgba(227, 255, 128, 0.44),
      0 0 20px rgba(164, 255, 67, 0.82),
      0 0 42px rgba(164, 255, 67, 0.48);
  }
  28% {
    opacity: 0.9;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .slip-panel,
  .showcase-panel,
  .multi-sport-panel,
  .board-panel,
  .hero-checks-panel,
  .plays-panel,
  .account-panel,
  .leaderboard-panel,
  .admin-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .slip-panel {
    position: static;
  }

  .hero-panel,
  .page-intro,
  .auth-columns {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-areas:
      "copy"
      "visual";
  }

  .play-system-banner,
  .system-rule-card__head,
  .hero-check-card__footer,
  .hero-checks-banner__copy,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-document {
    padding: 22px;
  }

  .process-document__check-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .play-system-banner__meter {
    justify-items: start;
  }

  .showcase-hub-card {
    grid-template-columns: 1fr;
  }

  .nfl-advanced-kpi-grid,
  .nfl-advanced-flow,
  .nfl-advanced-matchup-grid,
  .mlb-batting-kpi-grid,
  .mlb-handicap-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading__note {
    text-align: left;
  }
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 22px;
  }

  .site-nav {
    padding: 12px 14px;
  }

  .topbar__actions {
    justify-content: flex-start;
  }

  .page-intro__actions {
    justify-content: flex-start;
  }

  .brand {
    font-size: clamp(1.85rem, 7vw, 2.7rem);
  }

  .section-heading h3,
  .hero-title {
    letter-spacing: 0.035em;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 18px, 100%);
    padding-top: 14px;
  }

  .topbar,
  .site-nav,
  .page-intro-panel,
  .hero-panel,
  .hero-checks-panel,
  .showcase-panel,
  .multi-sport-panel,
  .slip-panel,
  .board-panel,
  .plays-panel,
  .account-panel,
  .leaderboard-panel,
  .admin-panel,
  .auth-card {
    padding: 18px;
    border-radius: 22px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .topbar__actions {
    justify-content: flex-start;
  }

  .page-intro__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr));
    width: 100%;
  }

  .page-intro__actions > * {
    min-width: 0;
    white-space: normal;
  }

  .hero-stats,
  .market-grid,
  .nfl-keys-picker,
  .nfl-keys-scoreboard,
  .nfl-advanced-kpi-grid,
  .nfl-advanced-flow,
  .nfl-advanced-matchup-controls,
  .nfl-advanced-matchup-grid,
  .mlb-batting-kpi-grid,
  .mlb-handicap-stat-grid,
  .ncaab-ratings-stat-grid {
    grid-template-columns: 1fr;
  }

  .mlb-batting-controls {
    display: grid;
  }

  .nfl-keys-heading,
  .ncaab-ratings-heading {
    display: grid;
  }

  .ncaab-ratings-controls {
    display: grid;
  }

  .ncaab-matchup-grid,
  .ncaab-distribution-grid {
    grid-template-columns: 1fr;
  }

  .nfl-keys-versus {
    justify-self: center;
  }

  .hero-visual {
    padding: 18px 12px;
  }

  .hero-logo__stage {
    min-height: 250px;
  }

  .hero-logo__check--1 {
    top: 16%;
    left: 6%;
  }

  .hero-logo__check--2 {
    top: 34%;
    left: 2%;
  }

  .hero-logo__check--3 {
    top: 52%;
    left: -1%;
  }

  .hero-title,
  .play-system-banner__title,
  .system-rule-card__value,
  .hero-check-card__title,
  .check-card__title {
    letter-spacing: 0.03em;
  }

  .layout-guide-badge {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 9px 10px;
  }

  .layout-guide-panel {
    right: 12px;
    bottom: 12px;
    width: min(100% - 24px, 320px);
  }

  .check-seal {
    width: 52px;
    height: 52px;
  }

  .showcase-hub-card__hero,
  .showcase-hub-card__body {
    padding: 18px;
  }

  .matchup {
    font-size: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo__image,
  .hero-logo__aurora--left,
  .hero-logo__aurora--right,
  .hero-logo__shine,
  .hero-logo__check,
  .hero-callout__symbol,
  .check-seal::after,
  .check-seal__ring,
  .check-seal__stroke {
    animation: none !important;
  }
}

.fantasy-rankings-app {
  display: grid;
  gap: 18px;
}

body[data-page="fantasyFootball"] #leaderboardPanel > .section-heading,
body[data-page="fantasyFootballRankings"] #leaderboardPanel > .section-heading {
  display: none;
}

.fantasy-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  overflow: hidden;
  color: #f9fbf2;
  border-color: rgba(196, 228, 67, 0.24);
  background: linear-gradient(135deg, #10231f 0%, #143d36 48%, #0f594c 100%);
}

.fantasy-home-hero .eyebrow,
.fantasy-home-hero .muted {
  color: rgba(249, 251, 242, 0.78);
}

.fantasy-home-hero__copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.fantasy-home-hero__copy h1 {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(2.45rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.fantasy-home-hero__copy .muted {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.65;
}

.fantasy-home-hero__actions {
  margin-top: 8px;
}

.fantasy-home-photo-panel {
  width: min(100%, 1120px);
  min-height: 540px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 19, 17, 0.76), rgba(7, 19, 17, 0.14) 46%, rgba(7, 19, 17, 0.62)),
    linear-gradient(180deg, rgba(7, 19, 17, 0.04), rgba(7, 19, 17, 0.68)),
    url("/static/images/true-value-fantasy-hero-zay-flowers-test.jpeg");
  background-position: center top;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(4, 16, 12, 0.22), 0 20px 42px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  position: relative;
}

.fantasy-home-photo-panel::before,
.fantasy-home-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fantasy-home-photo-panel::before {
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 255, 255, 0.22) 46% 47%, transparent 47% 53%, rgba(255, 255, 255, 0.22) 53% 54%, transparent 54% 100%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(255, 255, 255, 0.14) 34.5% 35%, transparent 35.5% 100%);
  opacity: 0.22;
}

.fantasy-home-photo-panel::after {
  background: linear-gradient(90deg, rgba(16, 35, 31, 0.72), transparent 48%, rgba(16, 35, 31, 0.44));
}

.fantasy-home-photo-panel__field {
  min-height: inherit;
}

.fantasy-logo-display {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.fantasy-logo-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.26));
}

.fantasy-home-hero__bottom {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fantasy-home-hero__bottom .eyebrow {
  margin: 0;
}

.fantasy-home-layout {
  gap: 24px;
}

.fantasy-home-priority,
.fantasy-home-section {
  grid-column: 1 / -1;
}

.fantasy-home-priority {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(29, 78, 216, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.fantasy-home-priority__copy {
  display: grid;
  gap: 6px;
}

.fantasy-home-priority__copy strong,
.fantasy-home-section__head strong,
.fantasy-home-tool strong {
  color: #14213d;
}

.fantasy-home-priority__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.fantasy-home-section {
  display: grid;
  gap: 14px;
}

.fantasy-home-section__head {
  display: grid;
  gap: 6px;
  max-width: 860px;
}

.fantasy-home-section__head strong {
  font-size: 1.25rem;
}

.fantasy-home-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fantasy-home-tool {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.fantasy-home-tool--featured {
  border-color: rgba(247, 118, 52, 0.44);
  box-shadow: 0 16px 32px rgba(247, 118, 52, 0.12);
}

.fantasy-home-tool--disabled {
  background: #f8fafc;
}

.fantasy-home-tool__body {
  display: grid;
  gap: 9px;
}

.quick-button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.quick-button--disabled {
  cursor: default;
  border-color: rgba(100, 116, 139, 0.28);
  background: #e2e8f0;
  color: #475569;
  box-shadow: none;
}

@media (max-width: 880px) {
  .fantasy-home-hero {
    grid-template-columns: 1fr;
  }

  .fantasy-home-photo-panel {
    min-height: 310px;
  }

  .fantasy-home-priority {
    grid-template-columns: 1fr;
  }

  .fantasy-home-priority__links {
    justify-content: flex-start;
  }

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

  .fantasy-rankings-hero {
    grid-template-columns: 1fr;
  }

  .fantasy-rankings-hero__brand,
  .fantasy-rankings-hero__copy {
    justify-items: center;
    text-align: center;
  }

  .fantasy-rankings-meta-strip {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  body[data-page="fantasyFootball"] #leaderboardPanel,
  body[data-page="fantasyFootball"] #leaderboardArea,
  body[data-page="fantasyFootball"] .fantasy-home-hero,
  body[data-page="fantasyFootballRankings"] #leaderboardPanel,
  body[data-page="fantasyFootballRankings"] #leaderboardArea,
  body[data-page="fantasyFootballRankings"] .fantasy-rankings-hero {
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
  }

  body[data-page="fantasyFootball"] #leaderboardPanel,
  body[data-page="fantasyFootballRankings"] #leaderboardPanel {
    width: calc(100vw - 18px);
  }

  .fantasy-home-hero {
    padding: 10px;
  }

  .fantasy-home-photo-panel {
    min-height: 230px;
  }

  .fantasy-home-tool-grid {
    grid-template-columns: 1fr;
  }

  .fantasy-home-tool {
    min-height: 0;
  }

  body[data-page="fantasyFootball"] #leaderboardArea .account-layout,
  body[data-page="fantasyFootballRankings"] #leaderboardArea .account-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .fantasy-logo-display {
    width: 100%;
  }

  .fantasy-rankings-logo {
    width: 100%;
  }
}

.fantasy-hub-rankings-slot {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.fantasy-rankings-app--embedded {
  gap: 14px;
}

.fantasy-rankings-inline-head {
  margin-bottom: 14px;
}

.fantasy-rankings-inline-head strong {
  display: block;
  margin-bottom: 6px;
}

.fantasy-rankings-hero {
  align-items: center;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  column-gap: 22px;
}

.fantasy-rankings-hero__brand {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.fantasy-rankings-logo {
  display: block;
  width: min(100%, 540px);
  height: auto;
  border: 1px solid rgba(122, 133, 112, 0.18);
  border-radius: 10px;
  filter: drop-shadow(0 12px 20px rgba(20, 32, 29, 0.14));
}

.fantasy-rankings-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fantasy-rankings-meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(17, 107, 92, 0.18);
  border-radius: 999px;
  color: #0d4e43;
  background: rgba(17, 107, 92, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fantasy-rankings-hero__copy {
  display: grid;
  gap: 8px;
}

.fantasy-rankings-hero__copy strong {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
}

@media (max-width: 880px) {
  .fantasy-rankings-hero {
    grid-template-columns: 1fr;
  }

  .fantasy-rankings-hero__brand,
  .fantasy-rankings-hero__copy {
    justify-items: center;
    text-align: center;
  }

  .fantasy-rankings-meta-strip {
    justify-content: center;
  }
}

.fantasy-rankings-hero .deposit-buttons,
.fantasy-rankings-controls .deposit-buttons {
  margin-top: 14px;
}

.fantasy-rankings-hero .deposit-buttons {
  gap: 8px;
  margin-top: 6px;
}

.fantasy-rankings-hero .quick-button {
  min-height: 32px;
  padding: 0 11px;
  font-size: 0.78rem;
}

.fantasy-control-grid {
  display: grid;
  grid-template-columns:
    minmax(165px, 1.05fr)
    minmax(170px, 1fr)
    minmax(190px, 0.9fr)
    minmax(170px, 1fr)
    minmax(138px, auto);
  gap: 14px;
  align-items: end;
}

.fantasy-segmented {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  overflow: hidden;
  min-height: 40px;
  border: 1px solid rgba(122, 133, 112, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.fantasy-segmented button,
.fantasy-position-tabs button,
.fantasy-rankings-table th button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.fantasy-segmented button {
  padding: 9px 12px;
  color: var(--text);
  background: transparent;
  border-right: 1px solid rgba(122, 133, 112, 0.22);
  font-size: 0.86rem;
  font-weight: 750;
}

.fantasy-segmented button:disabled {
  cursor: help;
  color: rgba(30, 42, 34, 0.45);
  background: rgba(122, 133, 112, 0.08);
}

.fantasy-segmented button:last-child {
  border-right: 0;
}

.fantasy-segmented button.is-active,
.fantasy-position-tabs button.is-active {
  color: #fff;
  background: #116b5c;
}

.fantasy-search-control {
  display: grid;
  gap: 7px;
}

.fantasy-search-control input,
.fantasy-search-control select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(122, 133, 112, 0.28);
  border-radius: 10px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
}

.fantasy-search-control select {
  min-width: 160px;
  cursor: pointer;
}

.fantasy-check-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(122, 133, 112, 0.28);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.fantasy-check-control input {
  width: 18px;
  height: 18px;
  accent-color: #116b5c;
}

.fantasy-check-control__copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.fantasy-check-control__copy .eyebrow {
  font-size: 0.58rem;
}

.fantasy-position-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(122, 133, 112, 0.18);
}

.fantasy-position-tabs button {
  min-height: 34px;
  min-width: 48px;
  padding: 0 13px;
  border-radius: 9px;
  color: var(--text);
  background: rgba(16, 107, 92, 0.09);
  font-size: 0.84rem;
  font-weight: 800;
}

.fantasy-rankings-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fantasy-rankings-metric {
  border: 1px solid rgba(122, 133, 112, 0.2);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.fantasy-rankings-metric strong {
  display: block;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.fantasy-rankings-metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.fantasy-rankings-board__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(122, 133, 112, 0.18);
}

.fantasy-position-tier-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.fantasy-position-tier-card {
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 8px;
  background: #fffaf0;
}

.fantasy-position-tier-card span,
.fantasy-position-tier-card small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.35;
}

.fantasy-position-tier-card span {
  color: #9a5b05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fantasy-position-tier-card strong {
  display: block;
  margin: 4px 0;
  color: var(--text);
  font-size: 0.95rem;
}

.fantasy-draft-room-key {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(122, 133, 112, 0.22);
  border-radius: 8px;
  background: #fffdf8;
}

.fantasy-draft-room-key__head {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
  padding-bottom: 2px;
}

.fantasy-draft-room-key__head strong {
  color: var(--text);
  font-size: 0.95rem;
}

.fantasy-draft-room-key__head span,
.fantasy-draft-room-key__note,
.fantasy-draft-room-key__item small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.35;
}

.fantasy-draft-room-key__item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-height: 48px;
}

.fantasy-draft-room-key__item strong,
.fantasy-draft-room-key__item small {
  display: block;
}

.fantasy-draft-room-key__item strong {
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.25;
}

.fantasy-draft-room-key__swatch {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(27, 35, 31, 0.12);
}

.fantasy-draft-room-key__swatch--strong-value {
  background: #cbe9d5;
}

.fantasy-draft-room-key__swatch--value {
  background: #e4f4e9;
}

.fantasy-draft-room-key__swatch--position-target {
  background: #e4f0ff;
}

.fantasy-draft-room-key__swatch--fade {
  background: #ffe5df;
}

.fantasy-draft-room-key__swatch--strong-fade {
  background: #f7c9c1;
}

.fantasy-draft-room-key__swatch--workload {
  background: linear-gradient(90deg, #f59e0b 0 38%, #fff8e7 38% 100%);
}

.fantasy-draft-room-key__note {
  grid-column: 1 / -1;
  display: block;
  padding-top: 2px;
}

.fantasy-rankings-table-wrap {
  overflow: auto;
  max-height: 760px;
  margin-top: 12px;
}

.fantasy-rankings-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.83rem;
}

.fantasy-rankings-table th,
.fantasy-rankings-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(122, 133, 112, 0.15);
  text-align: right;
  white-space: nowrap;
}

.fantasy-rankings-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f7f8f2;
}

.fantasy-rankings-table th button {
  width: 100%;
  padding: 0;
  color: var(--muted);
  background: transparent;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fantasy-rankings-table th:first-child button,
.fantasy-rankings-table th:nth-child(2) button,
.fantasy-rankings-table td:first-child,
.fantasy-rankings-table td:nth-child(2) {
  text-align: left;
}

.fantasy-rankings-table tbody tr:hover {
  background: rgba(17, 107, 92, 0.045);
}

.fantasy-tier-pill {
  display: inline-grid;
  min-width: 34px;
  min-height: 26px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  color: #7a4300;
  background: #fff7e6;
  font-size: 0.75rem;
  font-weight: 900;
}

.fantasy-auction-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  padding: 4px 8px;
  border: 1px solid rgba(17, 107, 92, 0.22);
  border-radius: 999px;
  color: #0f4f44;
  background: #edf8f3;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: normal;
  line-height: 1.15;
}

.fantasy-position-tier-divider td.fantasy-tier-divider-cell {
  position: static;
  left: auto;
  z-index: 1;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 9px 12px;
  text-align: left;
  white-space: normal;
  background: #fff7e6;
  box-shadow: inset 0 1px 0 rgba(245, 158, 11, 0.32), inset 0 -1px 0 rgba(245, 158, 11, 0.24);
}

.fantasy-overall-round-divider td.fantasy-overall-round-divider-cell {
  position: static;
  left: auto;
  z-index: 1;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 8px 12px;
  text-align: left;
  white-space: normal;
  background: #fff3dc;
  box-shadow: inset 0 2px 0 rgba(245, 158, 11, 0.42), inset 0 -1px 0 rgba(122, 67, 0, 0.14);
}

.fantasy-overall-round-divider div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
}

.fantasy-overall-round-divider strong {
  color: #7a4300;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fantasy-overall-round-divider span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.fantasy-position-tier-divider div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
}

.fantasy-position-tier-divider strong {
  color: #7a4300;
  font-size: 0.9rem;
}

.fantasy-position-tier-divider span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.fantasy-main-rankings-table tbody tr.fantasy-position-tier-divider:hover,
.fantasy-main-rankings-table tbody tr.fantasy-position-tier-divider:hover td.fantasy-tier-divider-cell {
  background: #fff7e6;
}

.fantasy-main-rankings-table tbody tr.fantasy-overall-round-divider:hover,
.fantasy-main-rankings-table tbody tr.fantasy-overall-round-divider:hover td.fantasy-overall-round-divider-cell {
  background: #fff3dc;
}

.fantasy-main-rankings-table {
  min-width: 1760px;
}

.fantasy-main-rankings-table--week1 {
  min-width: 1900px;
}

.fantasy-main-rankings-table th:first-child,
.fantasy-main-rankings-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  background: #fff;
}

.fantasy-main-rankings-table th:nth-child(2),
.fantasy-main-rankings-table td:nth-child(2) {
  position: sticky;
  left: 64px;
  z-index: 3;
  width: 272px;
  min-width: 272px;
  max-width: 272px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-main-rankings-table th:first-child,
.fantasy-main-rankings-table th:nth-child(2) {
  z-index: 7;
  background: #f7f8f2;
}

.fantasy-main-rankings-table tbody tr:hover td:first-child,
.fantasy-main-rankings-table tbody tr:hover td:nth-child(2) {
  background: #f2f8f4;
}

.fantasy-guide-table {
  min-width: 860px;
}

.fantasy-guide-table th,
.fantasy-guide-table td {
  text-align: left;
  white-space: normal;
  vertical-align: top;
}

.fantasy-guide-table th button {
  text-align: left;
}

.fantasy-guide-table th[title] button,
.fantasy-guide-table td[title] strong {
  cursor: help;
}

.fantasy-guide-table td:first-child {
  width: 150px;
}

.fantasy-guide-table td:last-child {
  width: 240px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.fantasy-coverage-guide-table {
  min-width: 980px;
}

.fantasy-coverage-guide-table td:first-child {
  width: 118px;
}

.fantasy-coverage-guide-table td:last-child {
  width: 320px;
}

.fantasy-guide-scale-list {
  display: grid;
  gap: 4px;
}

.fantasy-guide-scale-list span {
  display: block;
  line-height: 1.35;
}

.fantasy-player-cell {
  display: grid;
  grid-template-columns: 34px minmax(170px, 1fr);
  align-items: center;
  gap: 9px;
  text-align: left;
}

.fantasy-player-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.fantasy-player-cell strong,
.fantasy-player-cell small {
  display: block;
}

.fantasy-player-cell strong {
  color: var(--text);
  line-height: 1.1;
}

.fantasy-player-cell small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.fantasy-draft-room-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}

.fantasy-draft-room-badge {
  display: inline-grid;
  min-height: 20px;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.fantasy-draft-room-badge--strong-value {
  color: #0f5e42;
  border-color: rgba(15, 94, 66, 0.24);
  background: #cbe9d5;
}

.fantasy-draft-room-badge--value {
  color: #116b5c;
  border-color: rgba(17, 107, 92, 0.22);
  background: #e4f4e9;
}

.fantasy-draft-room-badge--position-target {
  color: #1d5f8f;
  border-color: rgba(29, 95, 143, 0.24);
  background: #e4f0ff;
}

.fantasy-draft-room-badge--fade {
  color: #a33631;
  border-color: rgba(178, 63, 58, 0.24);
  background: #ffe5df;
}

.fantasy-draft-room-badge--strong-fade {
  color: #8f2925;
  border-color: rgba(143, 41, 37, 0.24);
  background: #f7c9c1;
}

.fantasy-draft-room-badge--workload {
  color: #8b5200;
  border-color: rgba(245, 158, 11, 0.34);
  background: #fff2cc;
}

.fantasy-team-code {
  font-weight: 900;
}

.fantasy-position-badge,
.fantasy-trend,
.fantasy-draft-tag {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.fantasy-position-badge {
  min-width: 48px;
  min-height: 26px;
  padding: 0 8px;
  color: #fff;
  background: #44515c;
  font-size: 0.75rem;
}

.fantasy-position-badge--qb {
  background: #246c9c;
}

.fantasy-position-badge--rb {
  background: #116b5c;
}

.fantasy-position-badge--wr {
  background: #8b641d;
}

.fantasy-position-badge--te {
  background: #794261;
}

.fantasy-trend {
  width: 26px;
  height: 26px;
  background: rgba(139, 100, 29, 0.14);
  color: #8b641d;
}

.fantasy-trend--up {
  background: rgba(17, 107, 92, 0.14);
  color: #116b5c;
}

.fantasy-trend--down {
  background: rgba(178, 63, 58, 0.14);
  color: #b23f3a;
}

.fantasy-draft-tag {
  min-width: 72px;
  min-height: 26px;
  padding: 0 9px;
  color: #46515a;
  background: rgba(70, 81, 90, 0.12);
  font-size: 0.72rem;
}

.fantasy-draft-tag--value,
.fantasy-draft-tag--td-bounce,
.fantasy-draft-tag--schedule-lift,
.fantasy-draft-tag--projection-riser,
.fantasy-draft-tag--trenches-lift {
  color: #116b5c;
  background: rgba(17, 107, 92, 0.14);
}

.fantasy-draft-tag--risk,
.fantasy-draft-tag--td-fade,
.fantasy-draft-tag--schedule-tax,
.fantasy-draft-tag--projection-risk,
.fantasy-draft-tag--overpriced {
  color: #b23f3a;
  background: rgba(178, 63, 58, 0.14);
}

.fantasy-receiver-role-pill {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(29, 95, 143, 0.2);
  border-radius: 999px;
  color: #1d5f8f;
  background: #eef6ff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--strong-value td {
  background: #cfeeda;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--value td {
  background: #e8f6ed;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--position-target td {
  background: #eef6ff;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--fade td {
  background: #fff0ec;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--strong-fade td {
  background: #fbd6cf;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--strong-value:hover td {
  background: #c3e7d0;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--value:hover td {
  background: #ddf0e4;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--position-target:hover td {
  background: #e0efff;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--fade:hover td {
  background: #ffe5df;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--strong-fade:hover td {
  background: #f7c9c1;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--rb-workload td:first-child {
  box-shadow: inset 5px 0 #f59e0b;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--rb-workload-elevated td:first-child {
  box-shadow: inset 5px 0 #d97706;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--rb-workload-major td:first-child {
  box-shadow: inset 5px 0 #b45309;
}

.fantasy-main-rankings-table tbody tr.fantasy-draft-room-row--rb-workload td:nth-child(2) {
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62), inset 4px 0 rgba(245, 158, 11, 0.86);
}

.fantasy-printable-cheat-sheet {
  gap: 14px;
}

.fantasy-printable-cheat-sheet__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 16px;
  align-items: center;
}

.fantasy-printable-cheat-sheet__actions {
  display: grid;
  gap: 10px;
}

.fantasy-printable-scoring {
  justify-self: stretch;
}

.fantasy-printable-cheat-sheet__key .fantasy-draft-room-key {
  margin-top: 0;
}

.fantasy-printable-cheat-sheet__print-note {
  align-self: center;
  font-weight: 850;
}

.fantasy-printable-cheat-sheet__table-wrap {
  max-height: none;
}

.fantasy-printable-cheat-sheet-table {
  min-width: 1080px;
  font-size: 0.76rem;
}

.fantasy-printable-cheat-sheet-table th,
.fantasy-printable-cheat-sheet-table td {
  padding: 7px 7px;
}

.fantasy-printable-cheat-sheet-table th span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.fantasy-printable-cheat-sheet-table .fantasy-player-cell {
  grid-template-columns: 28px minmax(160px, 1fr);
  gap: 7px;
}

.fantasy-printable-cheat-sheet-table .fantasy-player-avatar {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  font-size: 0.62rem;
}

.fantasy-printable-cheat-sheet-table .fantasy-player-cell strong {
  font-size: 0.78rem;
}

.fantasy-printable-cheat-sheet-table .fantasy-player-cell small {
  display: none;
}

.fantasy-printable-cheat-sheet-table .fantasy-draft-room-badge {
  min-height: 17px;
  padding: 0 5px;
  font-size: 0.55rem;
}

.fantasy-printable-cheat-sheet-table.fantasy-main-rankings-table {
  min-width: 1080px;
}

.fantasy-printable-cheat-sheet-table.fantasy-main-rankings-table th:first-child,
.fantasy-printable-cheat-sheet-table.fantasy-main-rankings-table td:first-child {
  width: 52px;
  min-width: 52px;
  max-width: 52px;
}

.fantasy-printable-cheat-sheet-table.fantasy-main-rankings-table th:nth-child(2),
.fantasy-printable-cheat-sheet-table.fantasy-main-rankings-table td:nth-child(2) {
  left: 52px;
  width: 245px;
  min-width: 245px;
  max-width: 245px;
}

.fantasy-score-bar {
  display: grid;
  grid-template-columns: 48px 82px;
  align-items: center;
  gap: 8px;
}

.fantasy-score-bar__track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(122, 133, 112, 0.18);
}

.fantasy-score-bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #116b5c;
}

.fantasy-positive {
  color: #116b5c;
  font-weight: 900;
}

.fantasy-negative {
  color: #b23f3a;
  font-weight: 900;
}

.fantasy-drivers {
  display: inline-block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.fantasy-empty-row {
  text-align: left !important;
  padding: 20px !important;
}

.fantasy-articles-layout {
  align-items: start;
}

.fantasy-article-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.fantasy-article-card .deposit-buttons,
.fantasy-articles-hero .deposit-buttons,
.fantasy-article-shell .deposit-buttons {
  margin-top: 16px;
}

.fantasy-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 205px);
  gap: 12px;
  align-items: start;
}

.fantasy-article-layout--draft-strategy {
  grid-template-columns: minmax(0, 1fr);
}

.fantasy-article-shell {
  grid-column: 1 / -1;
}

.fantasy-article-shell h1 {
  max-width: 920px;
  margin: 10px 0 8px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.fantasy-article-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.fantasy-article-utility span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #116b5c;
  background: rgba(17, 107, 92, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
}

.fantasy-article-byline {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.fantasy-article-summary {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.fantasy-article-toc {
  position: static;
  display: grid;
  gap: 8px;
  padding: 14px;
  max-height: none;
  overflow: visible;
}

.fantasy-article-toc-label {
  display: block;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 950;
}

.fantasy-article-team-select {
  width: 100%;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(122, 133, 112, 0.28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
}

.fantasy-article-team-links {
  border-top: 1px solid rgba(122, 133, 112, 0.16);
  padding-top: 8px;
}

.fantasy-article-team-links summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.fantasy-article-team-links nav {
  display: grid;
  gap: 4px;
  max-height: 220px;
  margin-top: 8px;
  overflow: auto;
  padding-right: 4px;
}

.fantasy-article-toc a {
  display: block;
  padding: 5px 7px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
}

.fantasy-article-toc a:hover {
  color: #116b5c;
  background: rgba(17, 107, 92, 0.08);
}

.fantasy-article-body {
  max-width: 940px;
  padding: 30px;
}

.fantasy-article-layout--draft-strategy .fantasy-article-body {
  max-width: 1060px;
}

.fantasy-article-layout--draft-strategy .fantasy-article-toc {
  max-width: 1060px;
}

.fantasy-article-layout--draft-strategy .fantasy-article-team-links nav {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  max-height: 180px;
}

.fantasy-article-body h2,
.fantasy-article-body h3 {
  scroll-margin-top: 110px;
  color: var(--text);
  letter-spacing: 0;
}

.fantasy-article-body h2 {
  margin: 34px 0 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(122, 133, 112, 0.18);
  font-size: 1.55rem;
  line-height: 1.2;
}

.fantasy-article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.fantasy-article-body h3 {
  margin: 28px 0 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.fantasy-article-body p,
.fantasy-article-body li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
}

.fantasy-article-body p {
  margin: 0 0 15px;
}

.fantasy-article-body ul,
.fantasy-article-body ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 24px;
}

.fantasy-article-body a {
  color: #116b5c;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.fantasy-article-table-wrap {
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid rgba(122, 133, 112, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.fantasy-article-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.fantasy-article-table th,
.fantasy-article-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(122, 133, 112, 0.16);
  text-align: left;
  vertical-align: top;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fantasy-article-table th {
  color: #116b5c;
  background: rgba(17, 107, 92, 0.08);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fantasy-article-table tbody tr:last-child td {
  border-bottom: 0;
}

.projected-starters-page {
  display: grid;
  gap: 18px;
}

.projected-starters-hero {
  border-top: 4px solid #f28c28;
}

.projected-starters-controls {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 0.8fr);
  align-items: end;
  gap: 18px;
}

.projected-starters-controls > div:first-child strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.projected-starters-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(54px, 1fr));
  min-width: 286px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  overflow: hidden;
}

.projected-starters-switcher button {
  min-height: 42px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: #19252f;
  color: #dce5ea;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.projected-starters-switcher button:last-child {
  border-right: 0;
}

.projected-starters-switcher button:hover,
.projected-starters-switcher button:focus-visible {
  background: #263640;
}

.projected-starters-switcher button.is-active {
  background: #f28c28;
  color: #101820;
}

.projected-starters-select-label {
  display: grid;
  gap: 7px;
  color: #aebdc6;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.projected-starters-select-label select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #15212a;
  color: #f3f7f8;
  padding: 0 38px 0 12px;
  font: inherit;
  text-transform: none;
}

.projected-starters-position-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 28px;
}

.projected-starters-position-intro h2,
.projected-starters-list-heading h2,
.projected-starters-sources h2 {
  margin: 5px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: 0;
}

.projected-starters-position-intro p,
.projected-starters-sources p {
  margin: 0;
  color: #36434b;
  line-height: 1.65;
}

.projected-starters-position-intro .eyebrow,
.projected-starters-sources .eyebrow {
  color: #8a4c0b;
}

.projected-starters-position-intro aside {
  border-left: 3px solid #f28c28;
  padding-left: 18px;
}

.projected-starters-position-intro aside > span {
  display: block;
  margin-bottom: 7px;
  color: #f6a650;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.projected-starters-position-intro aside .quick-button {
  margin-top: 14px;
}

.projected-starters-list {
  display: grid;
  gap: 12px;
}

.projected-starters-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 4px;
}

.projected-starters-list-heading > span {
  color: #59666e;
  font-size: 0.86rem;
  font-weight: 700;
}

.projected-starter-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid #6e7c85;
  border-radius: 7px;
  background: #111c24;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.projected-starter-card--value {
  border-left-color: #4db581;
}

.projected-starter-card--fade {
  border-left-color: #d66a67;
}

.projected-starter-card__header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.projected-starter-rank {
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 54px;
  border: 1px solid rgba(242, 140, 40, 0.5);
  border-radius: 6px;
  background: #182730;
}

.projected-starter-rank span {
  color: #f6a650;
  font-size: 0.65rem;
  font-weight: 900;
}

.projected-starter-rank strong {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.projected-starter-identity {
  min-width: 0;
}

.projected-starter-identity h3 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.projected-starter-identity p {
  margin: 4px 0 0;
  color: #aebdc6;
  font-size: 0.84rem;
}

.projected-starter-value {
  justify-self: end;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: #1b2831;
  color: #cbd5da;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.projected-starter-value--value {
  border-color: rgba(77, 181, 129, 0.42);
  color: #91dbb5;
}

.projected-starter-value--fade {
  border-color: rgba(214, 106, 103, 0.42);
  color: #eda3a0;
}

.projected-starter-summary-grid,
.projected-starter-position-metrics {
  display: grid;
  gap: 8px;
}

.projected-starter-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projected-starter-position-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.projected-starters-metric {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 9px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.025);
}

.projected-starters-metric span {
  overflow: hidden;
  color: #91a3ad;
  font-size: 0.67rem;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.projected-starters-metric strong {
  overflow-wrap: anywhere;
  color: #f5f7f8;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.projected-starter-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  padding-top: 2px;
}

.projected-starter-copy p {
  margin: 0;
  color: #d2dade;
  line-height: 1.65;
}

.projected-starter-copy strong {
  color: #fff;
}

.projected-starter-model-case {
  border-left: 2px solid rgba(91, 151, 184, 0.72);
  padding-left: 14px;
}

.projected-starter-draft-call {
  border-left: 2px solid rgba(242, 140, 40, 0.62);
  padding-left: 14px;
}

.projected-starters-methodology h1 {
  display: none;
}

.projected-starters-sources > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.projected-starters-sources a {
  padding: 7px 9px;
  border: 1px solid rgba(242, 140, 40, 0.3);
  border-radius: 5px;
  color: #f6a650;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.projected-starters-sources a:hover,
.projected-starters-sources a:focus-visible {
  border-color: #f28c28;
  color: #fff;
}

@media (max-width: 900px) {
  .projected-starters-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .projected-starters-switcher {
    width: 100%;
    min-width: 0;
  }

  .projected-starters-position-intro,
  .projected-starter-copy {
    grid-template-columns: 1fr;
  }

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

  .projected-starter-position-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .projected-starter-card {
    padding: 14px;
  }

  .projected-starter-card__header {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .projected-starter-rank {
    min-width: 50px;
    min-height: 50px;
  }

  .projected-starter-value {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
    white-space: normal;
  }

  .projected-starter-position-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projected-starters-list-heading {
    align-items: start;
    flex-direction: column;
  }
}

.coverage-shell-figure {
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid rgba(23, 77, 65, 0.15);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248, 251, 247, 0.98), rgba(239, 247, 243, 0.96));
  box-shadow: 0 16px 38px rgba(19, 37, 27, 0.08);
}

.coverage-shell-diagram {
  width: 100%;
  background: #0f513b;
}

.coverage-shell-diagram svg {
  display: block;
  width: 100%;
  min-height: 270px;
}

.coverage-field {
  fill: #176f4f;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 2;
}

.coverage-yardline {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  stroke-dasharray: 7 9;
}

.coverage-diagram-kicker {
  fill: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.coverage-zone rect {
  stroke-width: 1.4;
}

.coverage-zone--deep rect {
  fill: rgba(120, 194, 255, 0.23);
  stroke: rgba(198, 232, 255, 0.8);
}

.coverage-zone--under rect {
  fill: rgba(255, 222, 111, 0.2);
  stroke: rgba(255, 236, 166, 0.82);
}

.coverage-zone--alert rect {
  fill: rgba(255, 129, 84, 0.22);
  stroke: rgba(255, 184, 138, 0.88);
}

.coverage-zone text {
  fill: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 950;
  text-anchor: middle;
}

.coverage-player circle {
  stroke-width: 2;
}

.coverage-player text {
  font-size: 12px;
  font-weight: 950;
  text-anchor: middle;
  letter-spacing: 0;
}

.coverage-player--offense circle,
.coverage-player--line circle {
  fill: #fff8dd;
  stroke: rgba(58, 55, 40, 0.55);
}

.coverage-player--offense text,
.coverage-player--line text {
  fill: #143426;
}

.coverage-player--defense circle {
  fill: #163a56;
  stroke: rgba(212, 237, 255, 0.85);
}

.coverage-player--defense text {
  fill: #ffffff;
}

.coverage-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.coverage-line--man {
  stroke: rgba(255, 245, 180, 0.94);
  stroke-dasharray: 8 7;
}

.coverage-line--rush {
  stroke: rgba(255, 119, 92, 0.95);
}

.coverage-line--drop {
  stroke: rgba(183, 232, 255, 0.95);
  stroke-dasharray: 6 6;
}

.coverage-shell-figure figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.coverage-shell-figure figcaption strong {
  color: var(--text);
  font-size: 1rem;
}

.coverage-shell-figure figcaption small {
  color: #116b5c;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offense-shell-diagram {
  background: #17533d;
}

.offense-field {
  fill: #1b7352;
}

.offense-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.offense-line--route {
  stroke: rgba(255, 244, 174, 0.96);
}

.offense-line--motion {
  stroke: rgba(121, 222, 255, 0.96);
  stroke-dasharray: 9 7;
}

.offense-line--block {
  stroke: rgba(255, 169, 111, 0.96);
  stroke-width: 3.4;
}

.offense-line--fake {
  stroke: rgba(209, 255, 198, 0.96);
  stroke-dasharray: 6 7;
}

.offense-line--guide {
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

.offense-route-label-box {
  fill: rgba(5, 45, 33, 0.92);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
}

.offense-route-label {
  fill: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.offense-callout rect {
  fill: rgba(4, 44, 32, 0.54);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
}

.offense-callout text {
  fill: rgba(255, 255, 255, 0.92);
  font-size: 11.5px;
  font-weight: 950;
  text-anchor: middle;
}

.offense-player circle {
  stroke-width: 2;
}

.offense-player text {
  font-size: 12px;
  font-weight: 950;
  text-anchor: middle;
  letter-spacing: 0;
}

.offense-player--receiver circle {
  fill: #fff4ae;
  stroke: rgba(69, 62, 24, 0.62);
}

.offense-player--tight circle {
  fill: #e7fff1;
  stroke: rgba(32, 96, 64, 0.7);
}

.offense-player--back circle,
.offense-player--qb circle {
  fill: #d7f0ff;
  stroke: rgba(21, 80, 111, 0.68);
}

.offense-player--line circle {
  fill: #f8f4e1;
  stroke: rgba(58, 55, 40, 0.5);
}

@media (max-width: 720px) {
  .offense-shell-figure {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
}

.offense-player text {
  fill: #123425;
}

.fantasy-trenches-app {
  display: grid;
  gap: 18px;
}

.fantasy-trenches-control-grid {
  grid-template-columns: minmax(120px, 0.55fr) minmax(120px, 0.55fr) minmax(240px, 1fr) minmax(260px, 1.05fr);
}

.fantasy-trenches-summary .fantasy-rankings-metric strong {
  font-size: 1.16rem;
  line-height: 1.15;
}

.fantasy-trenches-table {
  min-width: 2180px;
}

.fantasy-trenches-table-wrap {
  max-height: 720px;
}

.fantasy-trenches-table.fantasy-trenches-table--pressure {
  min-width: 1480px;
}

.fantasy-trenches-table.fantasy-trenches-table--teams {
  min-width: 1580px;
}

.fantasy-trenches-table--rb th:first-child,
.fantasy-trenches-table--rb td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  background: #fff;
}

.fantasy-trenches-table--rb th:nth-child(2),
.fantasy-trenches-table--rb td:nth-child(2) {
  position: sticky;
  left: 58px;
  z-index: 3;
  width: 248px;
  min-width: 248px;
  max-width: 248px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-trenches-table--pressure th:first-child,
.fantasy-trenches-table--pressure td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  background: #fff;
}

.fantasy-trenches-table--pressure th:nth-child(2),
.fantasy-trenches-table--pressure td:nth-child(2) {
  position: sticky;
  left: 58px;
  z-index: 3;
  width: 164px;
  min-width: 164px;
  max-width: 164px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-trenches-table--teams th:first-child,
.fantasy-trenches-table--teams td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 68px;
  min-width: 68px;
  max-width: 68px;
  background: #fff;
}

.fantasy-trenches-table--teams th:nth-child(2),
.fantasy-trenches-table--teams td:nth-child(2) {
  position: sticky;
  left: 68px;
  z-index: 3;
  width: 218px;
  min-width: 218px;
  max-width: 218px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-trenches-table--rb th:first-child,
.fantasy-trenches-table--rb th:nth-child(2),
.fantasy-trenches-table--pressure th:first-child,
.fantasy-trenches-table--pressure th:nth-child(2),
.fantasy-trenches-table--teams th:first-child,
.fantasy-trenches-table--teams th:nth-child(2) {
  z-index: 7;
  background: #f7f8f2;
}

.fantasy-trenches-table--rb tbody tr:hover td:first-child,
.fantasy-trenches-table--rb tbody tr:hover td:nth-child(2),
.fantasy-trenches-table--pressure tbody tr:hover td:first-child,
.fantasy-trenches-table--pressure tbody tr:hover td:nth-child(2),
.fantasy-trenches-table--teams tbody tr:hover td:first-child,
.fantasy-trenches-table--teams tbody tr:hover td:nth-child(2) {
  background: #f2f8f4;
}

.fantasy-coverage-controls .fantasy-trenches-control-grid {
  grid-template-columns:
    minmax(260px, 1.08fr)
    minmax(110px, 0.42fr)
    minmax(110px, 0.42fr)
    minmax(120px, 0.46fr)
    minmax(220px, 0.9fr);
}

.fantasy-coverage-table {
  min-width: 2180px;
}

.fantasy-qb-coverage-table {
  min-width: 2240px;
}

.fantasy-wr-cb-app {
  gap: 16px;
}

.fantasy-wr-cb-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fantasy-wr-cb-highlight-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.fantasy-wr-cb-highlight {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px 10px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(122, 133, 112, 0.18);
  border-radius: 7px;
  background: #fff;
}

.fantasy-wr-cb-highlight span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  background: #14245f;
  font-size: 0.7rem;
  font-weight: 950;
}

.fantasy-wr-cb-highlight strong,
.fantasy-wr-cb-highlight small {
  display: block;
}

.fantasy-wr-cb-highlight strong {
  color: var(--text);
  font-size: 0.86rem;
}

.fantasy-wr-cb-highlight small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.fantasy-wr-cb-highlight--upgrade {
  background: #f0fbf3;
}

.fantasy-wr-cb-highlight--downgrade {
  background: #fff1ed;
}

.fantasy-wr-cb-table-wrap {
  max-height: 780px;
  overflow: auto;
  margin-top: 12px;
  border: 1px solid rgba(122, 133, 112, 0.16);
  border-radius: 8px;
}

.fantasy-wr-cb-table {
  width: 100%;
  min-width: 2320px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.73rem;
}

.fantasy-wr-cb-table th,
.fantasy-wr-cb-table td {
  padding: 5px 6px;
  border-right: 1px solid rgba(20, 36, 95, 0.12);
  border-bottom: 1px solid rgba(122, 133, 112, 0.14);
  text-align: right;
  white-space: nowrap;
}

.fantasy-wr-cb-table th {
  position: sticky;
  top: 30px;
  z-index: 4;
  color: #fff;
  background: #14245f;
}

.fantasy-wr-cb-table thead tr:first-child th {
  top: 0;
  z-index: 6;
  text-align: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fantasy-wr-cb-superhead--offense {
  background: #14245f !important;
}

.fantasy-wr-cb-superhead--matchup {
  background: #063d2f !important;
}

.fantasy-wr-cb-superhead--defense {
  background: #1e2d6f !important;
}

.fantasy-wr-cb-superhead--read {
  background: #25314d !important;
}

.fantasy-wr-cb-table thead tr:nth-child(2) th:first-child,
.fantasy-wr-cb-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  background: #fff;
}

.fantasy-wr-cb-table thead tr:nth-child(2) th:nth-child(2),
.fantasy-wr-cb-table td:nth-child(2) {
  position: sticky;
  left: 58px;
  z-index: 3;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  text-align: left;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-wr-cb-table thead tr:nth-child(2) th:first-child,
.fantasy-wr-cb-table thead tr:nth-child(2) th:nth-child(2) {
  z-index: 8;
  background: #14245f;
}

.fantasy-wr-cb-table td:nth-child(2) strong,
.fantasy-wr-cb-table td:nth-child(18) strong,
.fantasy-wr-cb-table td:nth-child(2) small,
.fantasy-wr-cb-table td:nth-child(18) small {
  display: block;
}

.fantasy-wr-cb-table td:nth-child(2) small,
.fantasy-wr-cb-table td:nth-child(18) small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
}

.fantasy-wr-cb-table td:nth-child(13),
.fantasy-wr-cb-table td:nth-child(14),
.fantasy-wr-cb-table td:nth-child(15) {
  background: #f7fbf5;
}

.fantasy-wr-cb-grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 22px;
  border-radius: 5px;
  font-weight: 950;
}

.fantasy-wr-cb-grade--upgrade {
  color: #065f46;
  background: #bff0c8;
}

.fantasy-wr-cb-grade--neutral {
  color: #594100;
  background: #fff0bd;
}

.fantasy-wr-cb-grade--downgrade {
  color: #7f1d1d;
  background: #ffc4bc;
}

.fantasy-wr-cb-cell--good {
  display: inline-block;
  min-width: 36px;
  padding: 2px 4px;
  border-radius: 4px;
  color: #065f46;
  background: #dff7e4;
  font-weight: 900;
}

.fantasy-wr-cb-cell--bad {
  display: inline-block;
  min-width: 36px;
  padding: 2px 4px;
  border-radius: 4px;
  color: #7f1d1d;
  background: #ffe1dc;
  font-weight: 900;
}

.fantasy-wr-cb-read {
  display: inline-block;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.fantasy-wr-cb-row--upgrade td {
  background-color: #fbfffb;
}

.fantasy-wr-cb-row--downgrade td {
  background-color: #fffafa;
}

.fantasy-wr-cb-row:hover td,
.fantasy-wr-cb-row:hover td:first-child,
.fantasy-wr-cb-row:hover td:nth-child(2) {
  background: #eef6f0;
}

.fantasy-coverage-table--season th:first-child,
.fantasy-coverage-table--season td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  background: #fff;
}

.fantasy-coverage-table--season th:nth-child(2),
.fantasy-coverage-table--season td:nth-child(2) {
  position: sticky;
  left: 64px;
  z-index: 3;
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  background: #fff;
}

.fantasy-coverage-table--season th:nth-child(3),
.fantasy-coverage-table--season td:nth-child(3) {
  position: sticky;
  left: 136px;
  z-index: 3;
  width: 248px;
  min-width: 248px;
  max-width: 248px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-coverage-table--weekly th:first-child,
.fantasy-coverage-table--weekly td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  background: #fff;
}

.fantasy-coverage-table--weekly th:nth-child(2),
.fantasy-coverage-table--weekly td:nth-child(2) {
  position: sticky;
  left: 58px;
  z-index: 3;
  width: 248px;
  min-width: 248px;
  max-width: 248px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-coverage-table--defenses th:first-child,
.fantasy-coverage-table--defenses td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 68px;
  min-width: 68px;
  max-width: 68px;
  background: #fff;
}

.fantasy-coverage-table--defenses th:nth-child(2),
.fantasy-coverage-table--defenses td:nth-child(2) {
  position: sticky;
  left: 68px;
  z-index: 3;
  width: 86px;
  min-width: 86px;
  max-width: 86px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-coverage-table--season th:first-child,
.fantasy-coverage-table--season th:nth-child(2),
.fantasy-coverage-table--season th:nth-child(3),
.fantasy-coverage-table--weekly th:first-child,
.fantasy-coverage-table--weekly th:nth-child(2),
.fantasy-coverage-table--defenses th:first-child,
.fantasy-coverage-table--defenses th:nth-child(2) {
  z-index: 7;
  background: #f7f8f2;
}

.fantasy-coverage-table--season tbody tr:hover td:first-child,
.fantasy-coverage-table--season tbody tr:hover td:nth-child(2),
.fantasy-coverage-table--season tbody tr:hover td:nth-child(3),
.fantasy-coverage-table--weekly tbody tr:hover td:first-child,
.fantasy-coverage-table--weekly tbody tr:hover td:nth-child(2),
.fantasy-coverage-table--defenses tbody tr:hover td:first-child,
.fantasy-coverage-table--defenses tbody tr:hover td:nth-child(2) {
  background: #f2f8f4;
}

.fantasy-qb-coverage-table--season th:first-child,
.fantasy-qb-coverage-table--season td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  background: #fff;
}

.fantasy-qb-coverage-table--season th:nth-child(2),
.fantasy-qb-coverage-table--season td:nth-child(2) {
  position: sticky;
  left: 64px;
  z-index: 3;
  width: 248px;
  min-width: 248px;
  max-width: 248px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-qb-coverage-table--weekly th:first-child,
.fantasy-qb-coverage-table--weekly td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  background: #fff;
}

.fantasy-qb-coverage-table--weekly th:nth-child(2),
.fantasy-qb-coverage-table--weekly td:nth-child(2) {
  position: sticky;
  left: 58px;
  z-index: 3;
  width: 248px;
  min-width: 248px;
  max-width: 248px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-qb-coverage-table--defenses th:first-child,
.fantasy-qb-coverage-table--defenses td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 68px;
  min-width: 68px;
  max-width: 68px;
  background: #fff;
}

.fantasy-qb-coverage-table--defenses th:nth-child(2),
.fantasy-qb-coverage-table--defenses td:nth-child(2) {
  position: sticky;
  left: 68px;
  z-index: 3;
  width: 86px;
  min-width: 86px;
  max-width: 86px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-qb-coverage-table--season th:first-child,
.fantasy-qb-coverage-table--season th:nth-child(2),
.fantasy-qb-coverage-table--weekly th:first-child,
.fantasy-qb-coverage-table--weekly th:nth-child(2),
.fantasy-qb-coverage-table--defenses th:first-child,
.fantasy-qb-coverage-table--defenses th:nth-child(2) {
  z-index: 7;
  background: #f7f8f2;
}

.fantasy-qb-coverage-table--season tbody tr:hover td:first-child,
.fantasy-qb-coverage-table--season tbody tr:hover td:nth-child(2),
.fantasy-qb-coverage-table--weekly tbody tr:hover td:first-child,
.fantasy-qb-coverage-table--weekly tbody tr:hover td:nth-child(2),
.fantasy-qb-coverage-table--defenses tbody tr:hover td:first-child,
.fantasy-qb-coverage-table--defenses tbody tr:hover td:nth-child(2) {
  background: #f2f8f4;
}

.fantasy-coverage-sort-button {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.fantasy-coverage-sort-button small {
  min-width: 1ch;
  color: #116b5c;
  font-size: 0.58rem;
  font-weight: 950;
}

.fantasy-coverage-sort-button.is-active span,
.fantasy-coverage-sort-button:hover span,
.fantasy-coverage-sort-button:focus-visible span {
  color: var(--text-main);
  text-decoration: underline;
}

.fantasy-coverage-table th.is-active-sort-column {
  box-shadow: inset 0 -2px 0 rgba(17, 107, 92, 0.42);
}

.fantasy-coverage-table th.is-active-sort-column,
.fantasy-coverage-table td.is-active-sort-column {
  background: rgba(17, 107, 92, 0.08);
}

.fantasy-trenches-wide-cell {
  max-width: 340px;
  overflow: hidden;
  text-align: left !important;
  text-overflow: ellipsis;
}

.fantasy-trenches-grade {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 26px;
  border-radius: 999px;
  color: #fff;
  background: #6a746d;
  font-size: 0.74rem;
  font-weight: 950;
}

.fantasy-trenches-grade--a {
  background: #116b5c;
}

.fantasy-trenches-grade--b {
  background: #5c8f43;
}

.fantasy-trenches-grade--c {
  color: #5a431b;
  background: #f1c66a;
}

.fantasy-trenches-grade--d {
  background: #b06d2f;
}

.fantasy-trenches-grade--f {
  background: #b23f3a;
}

.fantasy-neutral {
  color: #66736d;
  font-weight: 850;
}

.fantasy-trenches-method .muted {
  max-width: 1040px;
}

body[data-page="fantasyFootballTrenches"] .page-intro__title {
  overflow-wrap: anywhere;
}

body[data-page="fantasyFootballCoverage"] .page-intro__title {
  overflow-wrap: anywhere;
}

body[data-page="fantasyFootballTeamDefenseCoverage"] .page-intro__title {
  overflow-wrap: anywhere;
}

.fantasy-team-defense-table {
  min-width: 2140px;
}

.fantasy-team-defense-table th:first-child,
.fantasy-team-defense-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  background: #fff;
}

.fantasy-team-defense-table th:nth-child(2),
.fantasy-team-defense-table td:nth-child(2) {
  position: sticky;
  left: 58px;
  z-index: 3;
  width: 178px;
  min-width: 178px;
  max-width: 178px;
  background: #fff;
  box-shadow: 10px 0 14px -14px rgba(27, 35, 31, 0.62);
}

.fantasy-team-defense-table th:first-child,
.fantasy-team-defense-table th:nth-child(2) {
  z-index: 7;
  background: #f7f8f2;
}

.fantasy-team-defense-table tbody tr:hover td:first-child,
.fantasy-team-defense-table tbody tr:hover td:nth-child(2) {
  background: #f2f8f4;
}

.fantasy-team-defense-table th:last-child,
.fantasy-team-defense-table td:last-child {
  min-width: 360px;
  max-width: 460px;
  white-space: normal;
}

.fantasy-team-defense-table td:last-child {
  overflow: visible;
  line-height: 1.4;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

.fantasy-team-defense-team-cell strong,
.fantasy-team-defense-team-cell span {
  display: block;
}

.fantasy-team-defense-team-cell span {
  color: #66736d;
  font-size: 0.78rem;
  font-weight: 750;
  max-width: 150px;
  overflow-wrap: anywhere;
}

.fantasy-team-defense-source-note .muted {
  max-width: 1120px;
}

@media (max-width: 900px) {
  .fantasy-position-tier-strip,
  .fantasy-draft-room-key {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fantasy-printable-cheat-sheet__hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .fantasy-position-tier-strip,
  .fantasy-draft-room-key {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .fantasy-control-grid,
  .fantasy-rankings-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fantasy-article-layout {
    grid-template-columns: 1fr;
  }

  .fantasy-article-toc {
    position: static;
    max-height: none;
  }

  .fantasy-article-team-links nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 260px;
  }
}

@media (max-width: 640px) {
  body[data-page="fantasyFootballTrenches"] .page-intro__title {
    font-size: 1.9rem;
    letter-spacing: 0;
    line-height: 1;
  }

  .fantasy-control-grid,
  .fantasy-rankings-summary {
    grid-template-columns: 1fr;
  }

  .fantasy-segmented {
    grid-auto-flow: row;
  }

  .fantasy-segmented button {
    border-right: 0;
    border-bottom: 1px solid rgba(122, 133, 112, 0.22);
  }

  .fantasy-segmented button:last-child {
    border-bottom: 0;
  }

  .fantasy-article-body {
    padding: 20px;
  }

  .fantasy-article-shell h1 {
    font-size: 2rem;
  }
}

@media print {
  @page {
    size: landscape;
    margin: 0.35in;
  }

  body[data-page="fantasyFootballCheatSheet"] {
    background: #fff !important;
    color: #111 !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .app-shell,
  body[data-page="fantasyFootballCheatSheet"] .leaderboard-card,
  body[data-page="fantasyFootballCheatSheet"] #leaderboardPanel,
  body[data-page="fantasyFootballCheatSheet"] #leaderboardArea,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .app-header,
  body[data-page="fantasyFootballCheatSheet"] .hero-panel,
  body[data-page="fantasyFootballCheatSheet"] .plays-panel,
  body[data-page="fantasyFootballCheatSheet"] .page-intro,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet__actions,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet__print-note,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-draft-room-key__note {
    display: none !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet__hero {
    display: block !important;
    margin-bottom: 8px !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet__hero strong {
    color: #111 !important;
    font-size: 18pt !important;
    line-height: 1 !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet__hero .muted,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-rankings-board__head,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-draft-room-key {
    color: #333 !important;
    font-size: 7pt !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-draft-room-key {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
    margin: 4px 0 6px !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-draft-room-key__item {
    padding: 3px 4px !important;
    border: 1px solid #cfd6cd !important;
    border-radius: 4px !important;
    background: #fff !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-rankings-table-wrap {
    overflow: visible !important;
    max-height: none !important;
    border: 0 !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 6.4pt !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-rankings-table th,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-rankings-table td {
    position: static !important;
    left: auto !important;
    z-index: auto !important;
    padding: 2.5px 3px !important;
    border-bottom: 1px solid #d9ddd5 !important;
    background-clip: padding-box !important;
    white-space: nowrap !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th span {
    color: #333 !important;
    font-size: 5.8pt !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th:first-child,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table td:first-child {
    width: 0.36in !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th:nth-child(2),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table td:nth-child(2) {
    width: 2.3in !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th:nth-child(3),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table td:nth-child(3),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th:nth-child(4),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table td:nth-child(4),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th:nth-child(5),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table td:nth-child(5),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table th:nth-child(6),
  body[data-page="fantasyFootballCheatSheet"] .fantasy-printable-cheat-sheet-table td:nth-child(6) {
    width: 0.52in !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-player-cell {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 4px !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-player-avatar {
    width: 18px !important;
    height: 18px !important;
    border-radius: 4px !important;
    font-size: 5pt !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-player-cell strong {
    font-size: 6.2pt !important;
    line-height: 1 !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-draft-room-badges {
    gap: 2px !important;
    margin-top: 2px !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-draft-room-badge {
    min-height: 10px !important;
    padding: 0 3px !important;
    border-radius: 3px !important;
    font-size: 4.8pt !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-position-badge,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-trend {
    min-width: 20px !important;
    min-height: 14px !important;
    height: 14px !important;
    padding: 0 3px !important;
    border-radius: 3px !important;
    font-size: 5.6pt !important;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-overall-round-divider td.fantasy-overall-round-divider-cell {
    padding: 3px 4px !important;
    background: #f4eadb !important;
    page-break-after: avoid;
  }

  body[data-page="fantasyFootballCheatSheet"] .fantasy-overall-round-divider strong,
  body[data-page="fantasyFootballCheatSheet"] .fantasy-overall-round-divider span {
    color: #333 !important;
    font-size: 6pt !important;
  }

  body[data-page="fantasyFootballCheatSheet"] tr {
    page-break-inside: avoid;
  }
}
