:root {
  --ink: #07130f;
  --ink-2: #0d2119;
  --turf: #0c6b45;
  --turf-bright: #17a96b;
  --lime: #c7ff3d;
  --gold: #f4c95d;
  --paper: #f3f0e6;
  --white: #ffffff;
  --red: #ff584d;
  --muted: #9bb0a7;
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 1rem;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 74px;
  padding: 0.65rem clamp(1rem, 3vw, 3.5rem);
  color: var(--white);
  background: rgba(7, 19, 15, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 2.7rem;
  height: 3rem;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid currentColor;
  border-radius: 48% 48% 42% 42% / 35% 35% 65% 65%;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--gold);
}

.brand b,
.brand small {
  display: block;
  line-height: 1;
}

.brand b {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.055em;
}

.brand small {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.site-header nav a {
  position: relative;
  color: #c8d5cf;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action {
  padding: 0.65rem 0.95rem;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 0.2rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 6rem);
  min-height: 650px;
  padding: clamp(4.4rem, 8vw, 7rem) clamp(1.2rem, 6vw, 7rem) clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 25%, rgba(23, 169, 107, 0.22), transparent 30%),
    linear-gradient(115deg, #07130f 0%, #081b14 55%, #0b3c29 100%);
}

.hero::after {
  position: absolute;
  right: -5vw;
  bottom: -21vw;
  width: 44vw;
  height: 44vw;
  min-width: 430px;
  min-height: 430px;
  content: "";
  border: 1px solid rgba(199, 255, 61, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 4vw rgba(255, 255, 255, 0.02),
    0 0 0 8vw rgba(255, 255, 255, 0.018),
    0 0 0 12vw rgba(255, 255, 255, 0.012);
}

.yard-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(255, 255, 255, 0.22) 10%),
    repeating-linear-gradient(0deg, transparent 0, transparent 48px, rgba(255, 255, 255, 0.08) 49px, transparent 50px);
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.hero-copy,
.scoreboard {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--turf);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.eyebrow span {
  padding: 0 0.35rem;
  color: var(--gold);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-bottom: 0.65rem;
  color: #a9bbb3;
  font-family: var(--body);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.hero h1 strong {
  display: block;
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  font-weight: inherit;
}

.hero-deck {
  max-width: 690px;
  margin: 1.7rem 0 0;
  color: #cbd8d2;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-deck em {
  color: var(--white);
  font-style: normal;
  font-weight: 850;
}

.draft-countdown {
  max-width: 690px;
  margin-top: 1.75rem;
  padding: 1rem 1.1rem 1.1rem;
  background: rgba(2, 10, 7, 0.7);
  border: 1px solid rgba(244, 201, 93, 0.42);
  border-left: 5px solid var(--gold);
  box-shadow: 8px 8px 0 rgba(23, 169, 107, 0.18);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.countdown-kicker,
.countdown-header time {
  display: block;
}

.countdown-kicker {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.countdown-header time {
  margin-top: 0.15rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.countdown-status {
  flex: 0 0 auto;
  padding: 0.3rem 0.5rem;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.countdown-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.8rem;
}

.countdown-units div {
  padding: 0 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.countdown-units div:first-child {
  padding-left: 0;
}

.countdown-units div:last-child {
  padding-right: 0;
  border-right: 0;
}

.countdown-units strong,
.countdown-units span {
  display: block;
}

.countdown-units strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.countdown-units span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.draft-countdown.is-live {
  border-color: var(--lime);
  border-left-color: var(--lime);
  box-shadow: 8px 8px 0 rgba(199, 255, 61, 0.2);
}

.draft-countdown.is-live .countdown-status {
  background: var(--lime);
}

.draft-countdown.is-live .countdown-units strong {
  color: var(--lime);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.18rem;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--turf);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
}

.scoreboard {
  align-self: center;
  max-width: 500px;
  margin-left: auto;
  color: var(--white);
  background: #050c09;
  border: 1px solid rgba(199, 255, 61, 0.34);
  box-shadow: 14px 14px 0 rgba(23, 169, 107, 0.25), var(--shadow);
  transform: rotate(1deg);
}

.scoreboard-top,
.scoreboard-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scoreboard-top {
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.scoreboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.scoreboard-grid div {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scoreboard-grid div:nth-child(even) {
  border-right: 0;
}

.scoreboard-grid strong,
.scoreboard-grid span {
  display: block;
}

.scoreboard-grid strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.scoreboard-grid span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scoreboard-callout {
  gap: 0.8rem;
  padding: 1rem 1.1rem;
}

.scoreboard-callout p {
  flex: 1;
  margin: 0;
}

.scoreboard-callout small,
.scoreboard-callout b {
  display: block;
}

.scoreboard-callout em {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
}

.scoreboard-callout small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.scoreboard-callout b {
  margin-top: 0.15rem;
  font-size: 0.93rem;
}

.scoreboard-callout > strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.7rem;
}

.live-dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(199, 255, 61, 0.12);
}

.ticker {
  display: flex;
  min-height: 45px;
  align-items: stretch;
  color: var(--white);
  background: var(--turf);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.ticker > span {
  display: grid;
  z-index: 1;
  min-width: 115px;
  place-items: center;
  padding: 0.5rem 1rem;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.ticker > div {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  animation: crawl 28s linear infinite alternate;
}

.ticker p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

@keyframes crawl {
  to { transform: translateX(-24%); }
}

.content-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.2rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: 3rem;
}

.section-heading h2,
.opening h2,
.draft-heading h2,
.closing h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-heading > div:last-child > p:last-child {
  max-width: 720px;
  margin: 1rem 0 0;
  color: #506159;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.25rem;
}

.section-label span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1rem;
}

.section-label p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.opening {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.opening-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.opening-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 0.45rem;
  content: "";
  background: var(--lime);
}

.opening-card .kicker {
  color: var(--lime);
}

.opening-card h2 {
  max-width: 940px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

blockquote {
  max-width: 930px;
  margin: 2.5rem 0;
  padding-left: 1.4rem;
  color: #d6e0dc;
  border-left: 4px solid var(--gold);
  font-size: clamp(1.02rem, 1.65vw, 1.3rem);
  line-height: 1.7;
}

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

.record-card {
  position: relative;
  min-height: 235px;
  padding: 1.35rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 19, 15, 0.12);
}

.record-card::after {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  color: rgba(7, 19, 15, 0.045);
  content: attr(data-index);
  font-family: var(--display);
  font-size: 8rem;
  line-height: 1;
}

.record-card.danger {
  color: var(--white);
  background: #5e1714;
}

.record-card.gold {
  background: var(--gold);
}

.record-card .record-label {
  display: block;
  color: var(--turf);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-card.danger .record-label {
  color: #ffb8b3;
}

.record-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.record-card p {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  color: #5c6b64;
  font-size: 0.84rem;
}

.record-card.danger p {
  color: #f5c8c5;
}

.goat-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--white);
  background: var(--turf);
}

.goat-number {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.75;
}

.goat-strip h3,
.goat-strip p {
  margin: 0;
}

.goat-strip h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.goat-strip p {
  margin-top: 0.35rem;
  color: #d2e5dc;
}

.goat-rings {
  display: flex;
  gap: 0.35rem;
  font-size: 1.8rem;
}

.champions-section {
  max-width: none;
  color: var(--white);
  background: var(--ink);
}

.champions-section > * {
  max-width: 1340px;
  margin-right: auto;
  margin-left: auto;
}

.champions-section .section-label span {
  color: var(--ink);
  background: var(--lime);
}

.champions-section .section-heading > div:last-child > p:last-child {
  color: var(--muted);
}

.champions-section .kicker {
  color: var(--lime);
}

.ring-cabinet {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.ring-card {
  min-height: 190px;
  padding: 1.35rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
}

.ring-card.leader {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.ring-count {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.ring-count strong {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.ring-count span {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ring-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1rem;
  line-height: 1.25;
}

.ring-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.ring-card .franchise-label {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ring-card.leader p {
  color: #4b3a0b;
}

.season-history {
  position: relative;
}

.season-history::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 89px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--lime), rgba(199, 255, 61, 0.08));
}

.season-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1.35fr) minmax(170px, 0.75fr) minmax(170px, 0.75fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 0 1.1rem 1rem;
  border-bottom: 1px solid var(--line);
}

.season-year {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.season-year::after {
  position: absolute;
  top: 50%;
  left: 84px;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--lime);
  border: 4px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}

.season-cell small,
.season-cell b {
  display: block;
}

.season-cell small {
  color: #789188;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.season-cell b {
  margin-top: 0.18rem;
  font-size: 0.92rem;
}

.champ-cell b {
  color: var(--white);
  font-size: 1.05rem;
}

.season-meta {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.upset-chip {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.1rem 0.35rem;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  vertical-align: 0.12rem;
}

.standings-section {
  max-width: 1520px;
}

.table-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.segmented {
  display: inline-flex;
  padding: 0.2rem;
  background: #dcd9cf;
  border-radius: 0.25rem;
}

.segmented button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  color: #536159;
  background: transparent;
  border: 0;
  border-radius: 0.18rem;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.segmented button.active {
  color: var(--white);
  background: var(--ink);
}

.table-toolbar label {
  display: grid;
  gap: 0.3rem;
  color: #59665f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-toolbar select {
  min-height: 42px;
  padding: 0.5rem 2.4rem 0.5rem 0.7rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8c8c0;
  border-radius: 0.2rem;
  font-weight: 750;
}

.table-shell {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid rgba(7, 19, 15, 0.13);
  box-shadow: 0 12px 34px rgba(7, 19, 15, 0.08);
}

table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 0.85rem;
  text-align: right;
  border-bottom: 1px solid #e6e5df;
  white-space: nowrap;
}

th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

th:first-child,
td:first-child {
  position: sticky;
  z-index: 1;
  left: 0;
  min-width: 270px;
  text-align: left;
}

td:first-child {
  background: var(--white);
}

tbody tr:hover td {
  background: #f6f9ed;
}

tbody tr:hover td:first-child {
  background: #f6f9ed;
}

.table-rank {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.55rem;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.9rem;
}

.team-summary {
  display: inline;
  white-space: normal;
}

.team-summary summary {
  display: inline;
  list-style: none;
  font-weight: 850;
  cursor: pointer;
}

.team-summary summary::-webkit-details-marker {
  display: none;
}

.team-summary summary::after {
  margin-left: 0.35rem;
  color: var(--turf);
  content: "+";
  font-weight: 950;
}

.team-summary[open] summary::after {
  content: "−";
}

.aliases {
  max-width: 420px;
  margin: 0.55rem 0 0 2.4rem;
  color: #66736c;
  font-size: 0.76rem;
  line-height: 1.5;
  white-space: normal;
}

.current-team {
  max-width: 420px;
  margin: 0.45rem 0 0 2.4rem;
  color: #44534c;
  font-size: 0.76rem;
  line-height: 1.5;
  white-space: normal;
}

.inactive-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.3rem;
  color: #6c716e;
  background: #e8e8e4;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  vertical-align: 0.12rem;
}

.ring-cell {
  color: #7c5900;
  font-weight: 950;
}

.negative {
  color: #b52c25;
}

.positive {
  color: #087548;
}

.table-note {
  margin: 0.8rem 0 0;
  color: #65716b;
  font-size: 0.78rem;
}

.draft-section {
  max-width: none;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 19, 15, 0.88), rgba(7, 19, 15, 0.94)),
    repeating-linear-gradient(90deg, #0a5b3b 0, #0a5b3b 9.8%, #0d7048 10%, #0d7048 19.8%);
}

.draft-section > * {
  max-width: 1340px;
  margin-right: auto;
  margin-left: auto;
}

.draft-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-label.light span {
  color: var(--ink);
  background: var(--lime);
}

.draft-heading .kicker {
  margin-top: 2rem;
  color: var(--lime);
}

.draft-heading h2 {
  font-size: clamp(4rem, 9vw, 8.5rem);
}

.draft-status {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.25rem 0.7rem;
  align-items: center;
  padding: 1rem 1.25rem;
  color: var(--ink);
  background: var(--gold);
}

.draft-status .live-dot {
  grid-row: 1 / 3;
  background: var(--turf);
  box-shadow: 0 0 0 5px rgba(12, 107, 69, 0.16);
}

.draft-status b,
.draft-status small {
  line-height: 1;
}

.draft-status b {
  font-size: 0.9rem;
}

.draft-status small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

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

.draft-card {
  position: relative;
  min-height: 275px;
  padding: 1.25rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-top: 6px solid var(--lime);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.draft-card.defending {
  background: var(--gold);
  border-top-color: var(--white);
}

.draft-card.user-franchise {
  color: var(--white);
  background: var(--turf);
  border-top-color: var(--gold);
}

.draft-pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.draft-pick strong {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
}

.draft-pick span {
  padding: 0.2rem 0.4rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.draft-card.user-franchise .draft-pick span {
  color: var(--ink);
  background: var(--lime);
}

.draft-card h3 {
  min-height: 2.65rem;
  margin: 0.65rem 0 0;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.draft-team-name {
  min-height: 1.2rem;
  margin: 0.25rem 0 0;
  color: #66736c;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.draft-card.user-franchise .draft-team-name {
  color: #c8ded4;
}

.draft-card.defending .draft-team-name {
  color: #5a4610;
}

.keeper-line {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  min-height: 48px;
  margin: 0.85rem 0;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(7, 19, 15, 0.14);
  border-bottom: 1px solid rgba(7, 19, 15, 0.14);
}

.draft-card.user-franchise .keeper-line {
  border-color: rgba(255, 255, 255, 0.22);
}

.keeper-badge {
  padding: 0.18rem 0.35rem;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.keeper-line p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.25;
}

.keeper-line p b,
.keeper-line p small {
  display: block;
}

.keeper-line p small {
  margin-top: 0.15rem;
  color: #66736c;
  font-size: 0.65rem;
}

.draft-card.user-franchise .keeper-line p small {
  color: #bcd9cc;
}

.no-keeper {
  color: #8c322e;
  font-weight: 850;
}

.draft-barb {
  margin: 0;
  color: #53635b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.draft-card.user-franchise .draft-barb {
  color: #d2e6dc;
}

.draft-card.defending .draft-barb {
  color: #4c3c12;
}

.history-mini {
  margin-top: 0.8rem;
  color: #75827c;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.draft-card.user-franchise .history-mini {
  color: #c8ded4;
}

.draft-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.2rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.draft-footnote p {
  max-width: 850px;
  margin: 0;
  color: #c8d7d0;
  font-size: 0.82rem;
}

.light-button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.closing {
  text-align: center;
}

.closing h2 {
  max-width: 1050px;
  margin: 0 auto;
}

.closing p:last-child {
  margin: 1.5rem 0 0;
  color: #617069;
  font-size: 1.05rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem clamp(1.2rem, 5vw, 5rem);
  color: var(--white);
  background: #030806;
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 800px;
  margin: 0;
  color: #8da098;
  font-size: 0.73rem;
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.32);
  font-size: 0.8rem;
  font-weight: 900;
  transform: translateY(160%);
  transition: transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    justify-content: flex-end;
  }

  .site-header .header-action {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .scoreboard {
    width: 100%;
    max-width: 720px;
    margin: 0;
    transform: none;
  }

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

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 4.5rem;
  }

  .site-header {
    min-height: 66px;
    padding: 0.55rem 0.85rem;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.5rem;
    font-size: 1.35rem;
  }

  .site-header nav {
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .site-header nav a {
    font-size: 0.68rem;
  }

  .site-header nav a:nth-child(2),
  .site-header nav a:nth-child(3) {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 strong {
    font-size: clamp(4rem, 20vw, 6rem);
  }

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

  .countdown-units div {
    padding: 0 0.45rem;
  }

  .countdown-units strong {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .countdown-units span {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .ticker > div {
    animation-duration: 20s;
  }

  .content-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .opening,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .opening-card {
    margin: 0 -0.2rem;
  }

  .record-grid,
  .ring-cabinet,
  .draft-board {
    grid-template-columns: 1fr;
  }

  .goat-strip {
    grid-template-columns: auto 1fr;
  }

  .goat-rings {
    grid-column: 1 / -1;
  }

  .season-history::before {
    left: 55px;
  }

  .season-row {
    grid-template-columns: 56px 1fr;
    gap: 0.8rem;
    padding-left: 0;
  }

  .season-year {
    font-size: 1.55rem;
  }

  .season-year::after {
    left: 49px;
  }

  .season-cell {
    padding: 0.25rem 0;
  }

  .season-cell:nth-child(n + 3) {
    grid-column: 2;
  }

  .table-toolbar,
  .draft-heading,
  .draft-footnote,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .table-toolbar label {
    width: 100%;
  }

  .table-toolbar select {
    width: 100%;
  }

  .draft-heading {
    align-items: flex-start;
  }

  .draft-heading h2 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .draft-status {
    align-self: flex-start;
  }

  .draft-footnote .button {
    width: 100%;
  }

  footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
