@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=Space+Mono:wght@400;700&display=swap");

@font-face {
  font-family: "Scoreboard60sLocal";
  src: url("/fonts/60s-scoreboard.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Scoreboard60s";
  src: url("/fonts/60s-scoreboard.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --frameScale: 1;
  --stage-scale: 1;
  --uiScale: 1;
  --ui-scale: var(--frameScale);
  --ui-font: clamp(10px, calc(14px * var(--ui-scale)), 18px);
  --ui-font-sm: clamp(9px, calc(12px * var(--ui-scale)), 16px);
  --ui-font-lg: clamp(12px, calc(22px * var(--ui-scale)), 28px);
  --bg: #cccbcc;
  --blue: #273a92;
  --green: #108040;
  --black: #000;
  --white: #fff;
  --pixel-shadow: 2px 2px 0 #108040;
  --asset-helmet: url("/assets/helmet_16bit.png");
  --asset-stripe: url("/assets/speedstripe_16bit.png");
  --asset-seahawks: url("/assets/seahawks_wordmark_16bit.png");
  --asset-proposal: url("/assets/proposal_wordmark_16bit.png");
  --asset-community: url("/assets/community_wordmark_16bit.png");
  --home-actions-gap: clamp(6px, calc(14px * var(--ui-scale)), 14px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "VT323", "Courier New", monospace;
  line-height: 1.25;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0 2px,
      rgba(0, 0, 0, 0.05) 2px 4px
    ),
    linear-gradient(180deg, #79b8f5 0%, #6ca9e9 32%, #4882cf 52%, #2f5fa9 76%, #20395f 100%);
}

.page {
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  padding: 18px 14px 30px;
}

.gameday-page {
  display: grid;
  gap: 16px;
}

/* STADIUM SCENE */
#stadiumStage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 0;
  pointer-events: auto;
  touch-action: none;
}

.stadiumViewport {
  --frame-w: min(100%, calc(100dvh * 9 / 16));
  --frame-h: calc(var(--frame-w) * 16 / 9);
  --ui-scale: var(--frameScale);
  --spare-x: max(0px, calc((100% - var(--frame-w)) / 2));
  --shell-radius: 48px;
  --band-outer-grey: 3px;
  --band-blue: 5px;
  --band-white: 1px;
  --band-green: 5px;
  --band-inner-grey: 3px;
  --shell-on: 1;
  --pad-og: calc(var(--band-outer-grey) * var(--shell-on));
  --pad-blue: calc(var(--band-blue) * var(--shell-on));
  --pad-white: calc(var(--band-white) * var(--shell-on));
  --pad-green: calc(var(--band-green) * var(--shell-on));
  --pad-ig: calc(var(--band-inner-grey) * var(--shell-on));
  --r0: var(--shell-radius);
  --r1: max(8px, calc(var(--shell-radius) - var(--pad-og)));
  --r2: max(8px, calc(var(--shell-radius) - (var(--pad-og) + var(--pad-blue))));
  --r3: max(8px, calc(var(--shell-radius) - (var(--pad-og) + var(--pad-blue) + var(--pad-white))));
  --r4: max(8px, calc(var(--shell-radius) - (var(--pad-og) + var(--pad-blue) + var(--pad-white) + var(--pad-green))));
  --r5: max(8px, calc(var(--shell-radius) - (var(--pad-og) + var(--pad-blue) + var(--pad-white) + var(--pad-green) + var(--pad-ig))));
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #b2b4b1;
}

.stadiumFrameShell {
  position: relative;
  width: var(--frame-w);
  height: var(--frame-h);
  aspect-ratio: 9 / 16;
  max-width: 100%;
  max-height: 100dvh;
}

.retroShell:not(.stadiumFrameShell) {
  position: relative;
  width: 100%;
  height: 100%;
}

.shell-outer-grey {
  border-radius: var(--r0);
  background: #b2b4b1;
  padding: var(--pad-og);
}

.shell-blue {
  border-radius: var(--r1);
  background: #013088;
  padding: var(--pad-blue);
}

.shell-white {
  border-radius: var(--r2);
  background: #ffffff;
  padding: var(--pad-white);
}

.shell-green {
  border-radius: var(--r3);
  background: #01843e;
  padding: var(--pad-green);
}

.shell-inner-grey {
  border-radius: var(--r4);
  background: #b2b4b1;
  padding: var(--pad-ig);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 20px 38px rgba(0, 0, 0, 0.35);
}

.stadiumFrameMask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--r5);
  background: #2b5486;
  touch-action: none;
  container-type: size;
  container-name: stadium-frame;
}

.stadiumFrameMask {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.stadium-scene {
  position: absolute;
  inset: 0;
}

.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 25;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 56%, rgba(0, 0, 0, 0.28) 100%),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.018) 0 2px,
      rgba(0, 0, 0, 0.02) 2px 4px
    );
}

#splashText {
  position: absolute;
  left: 50%;
  top: 12%;
  width: min(88%, 760px);
  max-width: calc(100% - 40px);
  transform: translate(-50%, -50%);
  z-index: 40;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, calc(14px * var(--ui-scale)), 14px);
  opacity: 0;
  visibility: hidden;
  text-align: left;
  padding: clamp(10px, calc(28px * var(--ui-scale)), 28px);
  box-sizing: border-box;
}

.splash-line {
  color: #ffffff;
  font-family: "Press Start 2P", "VT323", "Courier New", monospace;
  font-size: clamp(10px, calc(22px * var(--ui-scale)), 22px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: none;
  opacity: 0;
  transform: translateY(-40px);
  white-space: normal;
  text-wrap: balance;
  max-width: 100%;
  text-shadow:
    0 1px 0 #263c92,
    0 2px 0 #263c92,
    0 3px 0 #1a2d63,
    0 4px 0 #0e1c3d;
}

.splash-line--4 {
  font-size: clamp(11px, calc(27px * var(--ui-scale)), 27px);
  color: #ffffff;
  -webkit-text-stroke: 0;
  text-shadow:
    1px 0 0 #108040,
    -1px 0 0 #108040,
    0 1px 0 #108040,
    0 -1px 0 #108040,
    1px 1px 0 #108040,
    -1px 1px 0 #108040,
    1px -1px 0 #108040,
    -1px -1px 0 #108040,
    0 3px 0 #0e1c3d,
    0 4px 0 #0e1c3d;
}

#stadiumStage.splash--play #splashText {
  opacity: 1;
  visibility: visible;
}

#stadiumStage.splash--play .splash-line--1 {
  animation:
    splashDrop 700ms cubic-bezier(0.18, 0.62, 0.35, 1) 0ms forwards,
    splashFadeOut 500ms linear 6200ms forwards;
}

#stadiumStage.splash--play .splash-line--2 {
  animation:
    splashDrop 700ms cubic-bezier(0.18, 0.62, 0.35, 1) 0ms forwards,
    splashFadeOut 500ms linear 6450ms forwards;
}

#stadiumStage.splash--play .splash-line--3 {
  animation:
    splashDrop 700ms cubic-bezier(0.18, 0.62, 0.35, 1) 2150ms forwards,
    splashFadeOut 500ms linear 6700ms forwards;
}

#stadiumStage.splash--play .splash-line--4 {
  animation:
    splashDrop 700ms cubic-bezier(0.18, 0.62, 0.35, 1) 4300ms forwards,
    splashFadeOut 1000ms linear 7450ms forwards;
}

#stadiumStage.splash--reduced #splashText {
  opacity: 1;
  visibility: visible;
}

#stadiumStage.splash--reduced .splash-line {
  transform: translateY(0);
  opacity: 1;
  animation: none !important;
}

#stadiumStage.splash--done #splashText {
  opacity: 0;
  visibility: hidden;
}

.skipIntroBtn {
  position: absolute;
  left: clamp(12px, calc(24px * var(--ui-scale)), 24px);
  bottom: clamp(12px, calc(24px * var(--ui-scale)), 24px);
  z-index: 56;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, calc(14px * var(--ui-scale)), 14px);
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.35;
  cursor: pointer;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 0 1px rgba(12, 22, 45, 0.95);
  padding: 2px 4px;
  display: none;
}

body.splash-active .skipIntroBtn {
  display: inline-block;
}

body.splash-complete .skipIntroBtn {
  display: none;
}

.skipIntroBtn:hover,
.skipIntroBtn:focus-visible {
  opacity: 0.7;
}

.skipIntroBtn:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.uiOverlay {
  position: absolute;
  inset: 0;
  z-index: 55;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
}

.uiOverlay__headline {
  position: absolute;
  top: 4.6%;
  left: 50%;
  width: min(92%, 980px);
  margin: 0;
  transform: translate(-50%, 6px);
  color: #ffffff;
  font-family: "Press Start 2P", "VT323", "Courier New", monospace;
  font-size: clamp(9px, calc(18px * var(--frameScale)), 26px);
  line-height: 1.25;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  line-height: 1.15;
  text-shadow:
    0 2px 0 #1a2d63,
    0 4px 0 rgba(8, 14, 32, 0.65);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 780ms cubic-bezier(0.18, 0.62, 0.35, 1),
    transform 780ms cubic-bezier(0.18, 0.62, 0.35, 1);
}

.uiOverlay__headlineAlt {
  position: absolute;
  top: 4.6%;
  left: 50%;
  width: min(92%, 980px);
  margin: 0;
  transform: translate(-50%, 6px);
  color: #ffffff;
  font-family: "Press Start 2P", "VT323", "Courier New", monospace;
  font-size: clamp(9px, calc(18px * var(--frameScale)), 26px);
  line-height: 1.25;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #1a2d63,
    0 4px 0 rgba(8, 14, 32, 0.65);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 520ms cubic-bezier(0.18, 0.62, 0.35, 1),
    transform 520ms cubic-bezier(0.18, 0.62, 0.35, 1);
}

.uiOverlay__actions {
  position: absolute;
  left: 50%;
  bottom: 4.8%;
  width: min(92%, 980px);
  transform: translate(-50%, 10px);
  display: block;
  pointer-events: auto;
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.18, 0.62, 0.35, 1) 120ms,
    transform 700ms cubic-bezier(0.18, 0.62, 0.35, 1) 120ms;
}

.actionRow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(6px, calc(14px * var(--ui-scale)), 14px);
}

#actionRowSecondary {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + var(--home-actions-gap));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-sharehawk #actionRowSecondary {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.seaplaneSprite {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: transform;
  transform: translate3d(-200vw, -200vh, 0);
  z-index: 1;
}

.seaplaneSprite--front {
  z-index: 3;
}

.fxCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.fxCanvas--fireworks {
  z-index: 45;
}

.fxCanvas--confetti {
  z-index: 220;
}

#seaplaneOverlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 54;
}

#eagleOverlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 57;
}

.seaplaneOverlay__sprite {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: transform;
  mix-blend-mode: normal;
  opacity: 1;
  transform: translate3d(-200vw, -200vh, 0);
}

.salmonSprite {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: transform;
  transform: translate3d(-200vw, -200vh, 0);
  z-index: 9;
}

.uiBtn {
  pointer-events: auto;
  border: 2px solid #0f1f44;
  background: #263c92;
  color: #fff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, calc(20px * var(--frameScale)), 26px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: clamp(6px, calc(14px * var(--frameScale)), 18px);
  min-height: clamp(44px, calc(74px * var(--frameScale)), 88px);
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-align: center;
  text-wrap: unset;
  overflow: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  box-shadow:
    0 0 0 1px #fff,
    0 4px 0 #108040;
  transition: filter 140ms ease, transform 80ms ease, box-shadow 80ms ease;
}

.uiBtn__label {
  width: 100%;
  max-width: 100%;
  display: block;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.uiBtn__label > span {
  display: inline;
  width: auto;
}

body.ui-btn-labels-stacked .uiBtn {
  padding: clamp(4px, calc(10px * var(--frameScale)), 14px);
  min-height: clamp(44px, calc(66px * var(--frameScale)), 82px);
  font-size: clamp(11px, calc(18px * var(--frameScale)), 23px);
}

body.ui-btn-labels-stacked .uiBtn__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.08;
  gap: clamp(1px, calc(4px * var(--frameScale)), 7px);
}

#proposalRevealLayer {
  position: absolute;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.proposalSprite {
  position: absolute;
  pointer-events: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: transform, opacity, width, height;
  opacity: 0;
}

.proposalSprite--hawk {
  z-index: 1;
  transform: translate3d(-9999px, -9999px, 0);
}

.proposalSprite--closedScroll {
  z-index: 2;
  transform: translate3d(-9999px, -9999px, 0);
}

.proposalSprite--openScroll {
  z-index: 121;
  transform: translate3d(-9999px, -9999px, 0);
}

#proposalContent {
  position: absolute;
  z-index: 122;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: var(--proposal-content-left, 12%);
  top: var(--proposal-content-top, 16%);
  right: var(--proposal-content-right, 12%);
  bottom: var(--proposal-content-bottom, 12%);
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
  color: #263c92;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  line-height: 1.55;
  letter-spacing: 0.005em;
  padding: clamp(18px, calc(34px * var(--ui-scale)), 44px);
  box-sizing: border-box;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

#proposalContent::-webkit-scrollbar {
  width: 10px;
}

#proposalContent::-webkit-scrollbar-track {
  background: rgba(38, 60, 146, 0.12);
  border-radius: 8px;
}

#proposalContent::-webkit-scrollbar-thumb {
  background: rgba(38, 60, 146, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.proposal-title {
  margin: 0 0 clamp(8px, calc(16px * var(--ui-scale)), 22px);
  color: #263c92;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(14px, calc(28px * var(--ui-scale)), 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: center;
}

.proposal-subhead {
  margin: clamp(8px, calc(14px * var(--ui-scale)), 18px) 0 clamp(6px, calc(10px * var(--ui-scale)), 14px);
  color: #263c92;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, calc(20px * var(--ui-scale)), 23px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.14;
  text-align: center;
}

.proposal-body {
  margin: 0 0 clamp(7px, calc(12px * var(--ui-scale)), 16px);
  color: #263c92;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(9px, calc(16px * var(--ui-scale)), 18px);
  font-weight: 500;
  letter-spacing: 0.007em;
  line-height: 1.56;
}

.proposal-emphasis {
  margin: clamp(6px, calc(10px * var(--ui-scale)), 14px) 0 0;
  color: #108040;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, calc(17px * var(--ui-scale)), 20px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.proposal-divider {
  width: 100%;
  border: 0;
  border-top: 2px solid rgba(38, 60, 146, 0.35);
  margin: clamp(10px, calc(18px * var(--ui-scale)), 24px) 0 clamp(8px, calc(14px * var(--ui-scale)), 18px);
}

.proposal-bullets {
  margin: clamp(6px, calc(10px * var(--ui-scale)), 14px) 0 0;
  padding-left: clamp(18px, calc(28px * var(--ui-scale)), 34px);
  color: #108040;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, calc(17px * var(--ui-scale)), 20px);
  font-weight: 700;
  line-height: 1.4;
}

.proposal-bullets li + li {
  margin-top: clamp(3px, calc(5px * var(--ui-scale)), 7px);
}

.proposal-brand {
  margin-top: clamp(8px, calc(14px * var(--ui-scale)), 18px);
  margin-left: auto;
  text-align: right;
  width: fit-content;
  align-self: flex-end;
}

.proposal-logoLink {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.proposal-logo {
  width: clamp(62px, calc(110px * var(--ui-scale)), 124px);
  height: auto;
}

.proposal-credit {
  display: block;
  margin-top: clamp(6px, calc(10px * var(--ui-scale)), 12px);
  color: #263c92;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(8px, calc(13px * var(--ui-scale)), 14px);
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.proposal-link {
  color: #108040;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.proposal-link:hover {
  filter: brightness(1.08);
}

.uiClose {
  --close-hit-size: clamp(44px, calc(54px * var(--ui-scale)), 56px);
  --close-glyph-size: clamp(12px, calc(20px * var(--ui-scale)), 22px);
  --close-glyph-box: clamp(24px, calc(34px * var(--ui-scale)), 36px);
  position: absolute;
  width: var(--close-hit-size);
  height: var(--close-hit-size);
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 123;
}

.uiClose__glyph {
  width: var(--close-glyph-box);
  height: var(--close-glyph-box);
  display: grid;
  place-items: center;
  border: 2px solid #0f1f44;
  background: #263c92;
  color: #fff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: var(--close-glyph-size);
  line-height: 1;
  box-shadow: 0 0 0 1px #fff;
}

#proposalCloseBtn {
  position: absolute;
  left: 3.2%;
  bottom: 3.4%;
  transform: translateY(0);
}

#proposalCloseBtn:hover .uiClose__glyph,
#jumbotronCloseBtn:hover .uiClose__glyph {
  filter: brightness(1.12);
}

#proposalCloseBtn:active .uiClose__glyph,
#jumbotronCloseBtn:active .uiClose__glyph {
  transform: translateY(2px);
  box-shadow: 0 0 0 1px #fff;
}

body.proposal-open #proposalCloseBtn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.proposal-open #proposalContent {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.proposal-open .uiOverlay__headline {
  opacity: 0.35 !important;
}

body.proposal-open .uiOverlay__actions {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.uiBtn--secondary {
  background: #263c92;
  color: #ffffff;
}

.uiBtn--primary {
  background: #263c92;
  color: #ffffff;
}

.uiBtn--tertiary {
  background: #ffffff;
  color: #263c92;
  border-color: #263c92;
  box-shadow:
    0 0 0 1px #108040,
    0 4px 0 #263c92;
}

.uiBtn--tertiary .uiBtn__label {
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 800;
  font-size: clamp(11px, calc(17px * var(--frameScale)), 21px);
  letter-spacing: 0.055em;
  text-shadow: none;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
}

.uiBtn--sharehawk {
  display: none;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(92%, 560px);
  background: #263c92;
  color: #ffffff;
  border: 2px solid #0f1f44;
  box-shadow:
    0 0 0 1px #fff,
    0 4px 0 #108040;
  position: relative;
  animation: none;
  transform-origin: 50% 50%;
}

.uiBtn--sharehawk::before,
.uiBtn--sharehawk::after {
  content: none;
}

.uiBtn--sharehawk:disabled {
  opacity: 0.62;
  filter: grayscale(0.35) brightness(0.92);
  cursor: default;
}

.uiBtn:hover {
  filter: brightness(1.12);
}

.uiBtn:active {
  transform: translateY(2px);
  box-shadow:
    0 0 0 1px #fff,
    0 2px 0 #108040;
}

body.splash-complete .uiOverlay {
  opacity: 1;
  visibility: visible;
}

body.splash-complete .uiOverlay__headline,
body.splash-complete .uiOverlay__actions {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.splash-complete .uiOverlay__headlineAlt {
  opacity: 0;
  transform: translate(-50%, 6px);
}

@keyframes splashDrop {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  80% {
    opacity: 1;
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.layerWrap {
  position: absolute;
  inset: 0;
  --x-final: 0px;
  --y-final: 0px;
  --enter-x: 0px;
  --enter-y: 0px;
  --duration: 1180ms;
  --delay: 0ms;
  transform: translate(var(--x-final), var(--y-final));
  will-change: transform, opacity;
  transition:
    transform var(--duration) cubic-bezier(0.22, 0.61, 0.36, 1) var(--delay),
    opacity 320ms linear var(--delay);
}

.layerInner {
  position: absolute;
  inset: 0;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --layer-scale: 1.04;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(var(--layer-scale));
  will-change: transform;
}

.layerAsset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  pointer-events: none;
  will-change: transform, opacity;
}

.sparkleRegion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 7;
}

.sparkleRegion--left-stands {
  clip-path: polygon(0 40%, 52% 54%, 42% 92%, 0 100%);
}

.sparkleRegion--right-stands {
  clip-path: polygon(48% 54%, 100% 40%, 100% 100%, 58% 92%);
}

.sparkleRegion--endzone-stands {
  clip-path: polygon(18% 58%, 82% 58%, 100% 92%, 0 92%);
}

.sparkleRegion--left-top {
  clip-path: polygon(0 22%, 44% 30%, 40% 39%, 0 31%);
}

.sparkleRegion--right-top {
  clip-path: polygon(56% 30%, 100% 22%, 100% 31%, 60% 39%);
}

.sparkleRegion--tower-top {
  clip-path: polygon(42% 17%, 58% 17%, 61% 28%, 39% 28%);
}

.sparkleDot {
  position: absolute;
  width: 1px;
  height: 1px;
  background: #ffffff;
  opacity: 0;
  image-rendering: pixelated;
  animation: sparklePulse 700ms linear forwards;
}

@keyframes sparklePulse {
  0% {
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hawkSprite {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  z-index: 7;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: transform;
  transform: translate3d(-200vw, -200vh, 0);
}

.baldEagleSprite {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  z-index: 7;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: transform;
  transform: translate3d(-200vw, -200vh, 0);
}

#stadiumStage.stage--entering .layerWrap {
  transform: translate(
      calc(var(--x-final) + var(--enter-x)),
      calc(var(--y-final) + var(--enter-y))
    );
}

#stadiumStage.parallax-active .layerInner {
  transition: none;
}

.layerWrap--mountains {
  z-index: 1;
  --x-final: 0px;
  --y-final: 0px;
  --enter-y: -34px;
}

.layerWrap--mountains .layerInner {
  --layer-scale: 1.03;
}

.layerWrap--skyline {
  z-index: 2;
  --x-final: 0px;
  --y-final: 0px;
  --enter-y: -88px;
}

.layerWrap--skyline .layerInner {
  --layer-scale: 1.035;
}

.cityShimmerCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  /* Alpha masking in JS handles skyline-only clipping. */
}

.cityShimmerCanvas--debug {
  background: rgba(255, 0, 0, 0.1);
}

.layerWrap--left {
  z-index: 3;
  --x-final: clamp(-10px, -1.3vw, -4px);
  --y-final: 0px;
  --enter-x: -78px;
}

.layerWrap--left .layerInner {
  --layer-scale: 1.06;
}

.layerWrap--right {
  z-index: 4;
  --x-final: clamp(10px, 1.3vw, 16px);
  --y-final: 0px;
  --enter-x: 78px;
}

.layerWrap--right .layerInner {
  --layer-scale: 1.06;
}

.layerWrap--endzone {
  z-index: 5;
  --x-final: 0px;
  --y-final: 0px;
  --enter-y: 44px;
  --flag-lock-x: 0px;
  --flag-lock-y: 5px;
}

.layerWrap--endzone .layerInner {
  --layer-scale: 1.05;
}

.layerWrap--field {
  z-index: 6;
  --x-final: 0px;
  --y-final: 0px;
  --enter-y: 96px;
}

.layerWrap--field .layerInner {
  --layer-scale: 1.08;
}

.layerWrap--jumbotron {
  z-index: 5;
  --x-final: 0px;
  --y-final: 0px;
}

.ledOverlay {
  position: absolute;
  left: 45.8%;
  top: 31.75%;
  width: 7.5%;
  height: 21%;
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transform: scale(clamp(0.78, calc(1.1 * var(--ui-scale)), 1.1));
  transform-origin: 50% 50%;
}

.ledChar {
  color: #69BE28;
  font-family: "Scoreboard60s", "Press Start 2P", "VT323", monospace;
  font-size: clamp(11px, calc(27px * var(--ui-scale)), 27px);
  line-height: 1;
  text-shadow:
    0 0 1px #69BE28,
    0 0 4px rgba(105, 190, 40, 0.8),
    0 0 9px rgba(105, 190, 40, 0.45);
  opacity: 1;
  animation: ledBlink 1.4s steps(2, end) infinite;
}

.ledChar--1 { transform: translateX(10%); animation-delay: 0ms; }
.ledChar--2 { transform: translateX(88%); animation-delay: 40ms; }
.ledChar--3 { transform: translateX(10%); animation-delay: 80ms; margin-top: 14%; }
.ledChar--4 { transform: translateX(58%); animation-delay: 120ms; }
.ledChar--5 { transform: translateX(88%); animation-delay: 160ms; }
.ledChar--6 { transform: translateX(122%); animation-delay: 200ms; }
.ledChar--7 { transform: translateX(156%); animation-delay: 240ms; }
.ledChar--8 { transform: translateX(190%); animation-delay: 280ms; }

.fgScoreboardStatus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: clamp(2px, calc(4px * var(--ui-scale)), 6px);
  pointer-events: none;
  z-index: 7;
}

.fgScoreboardStatus__title {
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(10px, calc(18px * var(--ui-scale)), 20px);
  text-transform: uppercase;
  text-shadow: 0 2px 0 #1a2d63;
}

.fgScoreboardStatus__label {
  color: #ffe95a;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(7px, calc(11px * var(--ui-scale)), 12px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fgScoreboardStatus__count {
  color: #69BE28;
  font-family: "Scoreboard60s", "Press Start 2P", "VT323", monospace;
  font-size: clamp(10px, calc(18px * var(--ui-scale)), 24px);
  letter-spacing: 0.04em;
  text-shadow:
    0 0 1px #69BE28,
    0 0 4px rgba(105, 190, 40, 0.8);
}

body.field-goal-success .ledOverlay .ledChar {
  opacity: 0;
}

body.field-goal-success .fgScoreboardStatus {
  display: flex;
}

.fieldGoalLauncher {
  --fg-launcher-base: clamp(18px, calc(64px * var(--ui-scale)), 76px);
  position: absolute;
  top: calc(18% - 35px);
  right: 8%;
  width: calc(var(--fg-launcher-base) * 3);
  height: calc(var(--fg-launcher-base) * 3);
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 176;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(0, 180, 255, 0.7));
}

.fieldGoalLauncher__rig {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 33.333%;
  height: 33.333%;
  transform: translate(-50%, -50%);
  display: inline-block;
  pointer-events: none;
}

.fieldGoalLauncher__rig::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(-398% - 5px - 100vh);
  width: clamp(1px, calc(2px * var(--ui-scale)), 3px);
  height: calc(360% + 6px + 100vh);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(232, 236, 255, 0.95) 0%, rgba(206, 214, 242, 0.92) 100%);
  box-shadow: 0 0 1px rgba(180, 196, 255, 0.7);
  z-index: 3;
  pointer-events: none;
}

.fieldGoalLauncher__ball {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 300%;
  height: auto;
  display: block;
  transform: translate(-50%, -50%);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  z-index: 1;
  pointer-events: none;
}

.fieldGoalLauncher__hook {
  position: absolute;
  left: 50%;
  top: calc(-400% + 0px);
  width: 165%;
  height: auto;
  transform: translateX(-50%) scaleX(1.14);
  transform-origin: center top;
  z-index: 2;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

body.fg-launcher-visible:not(.fg-game-active):not(.proposal-open):not(.jumbotron-open):not(.subscribe-open):not(.receipt-preview-open) .fieldGoalLauncher {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: fgFloat 2.5s ease-in-out infinite;
}

body.fg-launcher-pop.fg-launcher-visible:not(.fg-game-active):not(.proposal-open):not(.jumbotron-open):not(.subscribe-open):not(.receipt-preview-open) .fieldGoalLauncher {
  animation: fgUnlockPop 1280ms cubic-bezier(0.2, 0.82, 0.26, 1) 1 both, fgFloat 2.5s ease-in-out 1280ms infinite;
}

.fieldGoalGameOverlay {
  position: absolute;
  inset: 0;
  z-index: 231;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  touch-action: none;
}

body.fg-game-active .fieldGoalGameOverlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.fg-game-active .uiOverlay__actions,
body.fg-game-active .claimShareBtn,
body.fg-game-active .fieldGoalLauncher,
body.fg-game-active .uiOverlay__headline,
body.fg-game-active .uiOverlay__headlineAlt {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.fieldGoalInstruction {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(9px, calc(16px * var(--ui-scale)), 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #1a2d63;
  padding: clamp(4px, calc(8px * var(--ui-scale)), 10px) clamp(8px, calc(14px * var(--ui-scale)), 18px);
  background: rgba(7, 12, 25, 0.7);
  border: 2px solid rgba(38, 60, 146, 0.95);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 234;
  transition: opacity 160ms ease;
}

body.fg-instruction .fieldGoalInstruction {
  opacity: 1;
  visibility: visible;
}

.fieldGoalPostGlow {
  position: absolute;
  left: 50%;
  top: 60%;
  width: clamp(120px, calc(200px * var(--ui-scale)), 240px);
  height: clamp(80px, calc(130px * var(--ui-scale)), 170px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(255, 220, 80, 0.34) 0%, rgba(255, 220, 80, 0.08) 48%, rgba(255, 220, 80, 0) 76%);
  filter: saturate(1.2);
}

body.fg-game-active .fieldGoalPostGlow {
  opacity: 1;
  animation: fgPostGlow 1600ms ease-in-out infinite;
}

.fieldGoalMeter {
  position: absolute;
  left: 50%;
  top: 92%;
  width: clamp(180px, calc(330px * var(--ui-scale)), 380px);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease;
  --fg-meter-color: #69be28;
}

body.fg-meter-active .fieldGoalMeter {
  opacity: 1;
  visibility: visible;
}

.fieldGoalMeter__label {
  margin-bottom: clamp(4px, calc(6px * var(--ui-scale)), 8px);
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(7px, calc(11px * var(--ui-scale)), 13px);
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 1px 0 #1a2d63;
}

.fieldGoalMeter__track {
  position: relative;
  width: 100%;
  height: clamp(16px, calc(24px * var(--ui-scale)), 28px);
  display: flex;
  border: 2px solid #0b1a43;
  background: #101726;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.fieldGoalMeter__track::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: calc((100% - 4px) * var(--fg-meter-value, 0));
  background: var(--fg-meter-color);
  opacity: 0.7;
  z-index: 1;
}

.fieldGoalMeter__zone {
  height: 100%;
  opacity: 0.26;
}

.fieldGoalMeter__zone--red {
  width: 30%;
  background: #db3d3d;
}

.fieldGoalMeter__zone--green {
  width: 55%;
  background: #69be28;
}

.fieldGoalMeter__zone--yellow {
  width: 15%;
  background: #f8d44a;
}

.fieldGoalMeter__indicator {
  position: absolute;
  top: -2px;
  left: calc(var(--fg-meter-value, 0.5) * 100%);
  width: clamp(8px, calc(12px * var(--ui-scale)), 14px);
  height: calc(100% + 4px);
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow:
    0 0 0 1px #0b1a43,
    0 0 8px rgba(255, 255, 255, 0.45);
  z-index: 2;
}

.fieldGoalMeter.is-red {
  --fg-meter-color: #db3d3d;
}

.fieldGoalMeter.is-green {
  --fg-meter-color: #69be28;
}

.fieldGoalMeter.is-yellow {
  --fg-meter-color: #f8d44a;
}

body.fg-ball-ready .fieldGoalBall {
  animation: fgBallIdle 540ms ease-in-out infinite;
  pointer-events: auto;
  cursor: grab;
}

body.fg-ball-held .fieldGoalBall {
  animation: none;
  cursor: grabbing;
  filter: brightness(1.14) drop-shadow(0 0 6px rgba(255, 255, 255, 0.42));
}

.fieldGoalBall {
  position: absolute;
  width: clamp(28px, calc(52px * var(--ui-scale)), 64px);
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0;
  pointer-events: none;
  touch-action: none;
  will-change: transform;
  transition: filter 120ms ease, opacity 100ms ease;
}

body.fg-game-active .fieldGoalBall {
  opacity: 1;
}

.fieldGoalResult {
  position: absolute;
  left: 50%;
  top: 24%;
  transform: translateX(-50%);
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(9px, calc(16px * var(--ui-scale)), 20px);
  text-shadow: 0 2px 0 #1a2d63;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.fg-game-active.fg-result-show .fieldGoalResult {
  opacity: 1;
}

#fieldGoalCloseBtn {
  position: absolute;
  left: 3.2%;
  bottom: 3.4%;
  transform: translateY(0);
  z-index: 232;
}

body.fg-game-active #fieldGoalCloseBtn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@keyframes fgUnlockPop {
  0% { opacity: 1; transform: translateY(-120vh) scale(1); }
  72% { opacity: 1; transform: translateY(8px) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fgPostGlow {
  0%, 100% { opacity: 0.24; transform: translate(-50%, -50%) scale(0.98); }
  50% { opacity: 0.52; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes fgBallIdle {
  0%, 100% { transform: translate3d(var(--fg-ball-x, -9999px), var(--fg-ball-y, -9999px), 0) rotate(0deg); }
  50% { transform: translate3d(var(--fg-ball-x, -9999px), calc(var(--fg-ball-y, -9999px) - 5px), 0) rotate(-5deg); }
}

#jumbotronOverlay {
  position: absolute;
  inset: 0;
  --jumbotron-width: 101%;
  --jumbotron-origin-dx: 0px;
  --jumbotron-origin-dy: 0px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.debug-jumbotron #jumbotronOverlay {
  outline: 4px solid magenta !important;
}

.jumbotronPanel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--jumbotron-width);
  max-width: none;
  height: auto;
  aspect-ratio: 1080 / 1920;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0) translate3d(0, 0, 0) scaleX(1) scaleY(1);
  opacity: 0;
  will-change: transform, opacity, filter;
  pointer-events: none;
  filter: none;
  overflow: visible;
}

.jumbotronFrame {
  position: relative;
  width: 100%;
  height: 100%;
}

.debug-jumbotron .jumbotronPanel {
  outline: 4px solid cyan !important;
  background: rgba(255, 0, 255, 0.08) !important;
}

.jumbotronFrameImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  pointer-events: none;
}

#jumbotronOverlay .jumbotronContent {
  position: absolute;
  left: 7.2%;
  right: 7.2%;
  top: 5.8%;
  bottom: 6.8%;
  overflow: hidden;
  pointer-events: none;
  padding: 0;
  box-sizing: border-box;
  z-index: 3;
}

.jumbotronFitText {
  --fit-max: 18;
  --fit-min: 8;
  font-size: calc(var(--fit-max) * 1px);
}

.jumbotronScreen {
  position: absolute;
  inset: 8.8% 0 11.8%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2px, calc(5px * var(--ui-scale)), 5px) clamp(6px, calc(16px * var(--ui-scale)), 16px);
  box-sizing: border-box;
}

.jumbotronScreen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      to right,
      rgba(130, 165, 208, 0.08) 0 1px,
      transparent 1px 6px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(130, 165, 208, 0.07) 0 1px,
      transparent 1px 5px
    );
  opacity: 0.1;
}

.jumbotronScreenContent {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, calc(8px * var(--ui-scale)), 9px);
  transform: translateY(calc(18px * var(--ui-scale)));
}

.jumbotronScoreboardCopy {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jumbotronLine {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding-inline: clamp(4px, calc(8px * var(--ui-scale)), 10px);
  overflow: hidden;
  text-overflow: clip;
}

.jumbotronLine--label {
  --fit-max: 22;
  --fit-min: 10;
  color: #ffe95a;
  white-space: nowrap;
  letter-spacing: 0.06em;
  font-family:
    "Scoreboard60sLocal",
    "IBM Plex Mono",
    sans-serif;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(42, 32, 8, 0.95);
}

.jumbotronLine--value {
  --fit-max: 64;
  --fit-min: 15;
  color: #108040;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-family:
    "Scoreboard60sLocal",
    "IBM Plex Mono",
    monospace;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  text-shadow:
    0 0 3px rgba(90, 255, 90, 0.28),
    0 0 6px rgba(50, 255, 50, 0.14);
}

.jumbotronLine--value.two-line {
  white-space: normal;
  display: grid;
  justify-items: center;
  gap: clamp(1px, calc(2px * var(--ui-scale)), 2px);
  line-height: 0.92;
}

.jumbotronLine--value.two-line > span {
  display: block;
  width: 100%;
}

.jumbotronDivider {
  width: 100%;
  height: clamp(1px, calc(2px * var(--ui-scale)), 2px);
  background: rgba(178, 180, 177, 0.52);
}

.jumbotronSpacer {
  width: 100%;
  height: clamp(2px, calc(4px * var(--ui-scale)), 5px);
}

#jumbotronCloseBtn {
  position: absolute;
  left: 3.2%;
  bottom: 3.4%;
  top: auto;
  transform: translateY(0);
  width: var(--close-hit-size);
  height: var(--close-hit-size);
  z-index: 180;
}

body.jumbotron-open:not(.jumbotron-opening):not(.jumbotron-closing) #jumbotronCloseBtn {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

body.jumbotron-open #jumbotronOverlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#jumbotronOverlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.jumbotron-opening #jumbotronPanel {
  animation: jumbotronExpandIn 560ms cubic-bezier(0.18, 0.62, 0.35, 1) forwards;
}

body.jumbotron-open:not(.jumbotron-opening):not(.jumbotron-closing) #jumbotronPanel {
  transform: translate3d(-50%, -50%, 0) translate3d(0, 0, 0) scaleX(1) scaleY(1);
  opacity: 1;
  pointer-events: auto;
  filter: none;
}

body.jumbotron-closing #jumbotronPanel {
  animation: jumbotronExpandOut 420ms cubic-bezier(0.42, 0, 1, 1) forwards;
}

body.jumbotron-open .uiOverlay__actions .uiBtn {
  display: none !important;
}

body.jumbotron-open .uiOverlay__actions #shareHawkBtn {
  display: block !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  filter: none !important;
}

body.sharehawk-joined .uiOverlay__actions #shareHawkBtn {
  display: none !important;
  pointer-events: none !important;
}

body.jumbotron-open .uiOverlay__headline {
  opacity: 0 !important;
  transform: translate(-50%, -8px) !important;
}

body.jumbotron-open .uiOverlay__headlineAlt {
  opacity: 1 !important;
  transform: translate(-50%, 0) !important;
}

.fieldWelcomeMsg {
  position: absolute;
  left: 50%;
  bottom: 5.4%;
  transform: translateX(-50%) translateY(6px);
  width: min(88%, 720px);
  text-align: center;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(12px, calc(24px * var(--ui-scale)), 30px);
  letter-spacing: 0.05em;
  line-height: 1.08;
  color: #ffffff;
  text-shadow:
    2px 0 0 #263c92,
    -2px 0 0 #263c92,
    0 2px 0 #263c92,
    0 -2px 0 #263c92,
    2px 2px 0 #263c92,
    -2px 2px 0 #263c92,
    2px -2px 0 #263c92,
    -2px -2px 0 #263c92,
    0 3px 0 rgba(17, 29, 63, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 186;
  transition:
    opacity 240ms ease-out,
    transform 240ms ease-out,
    visibility 0ms linear 240ms;
}

body.welcome-msg-active .fieldWelcomeMsg {
  opacity: 0.98;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  animation: welcomeFlash 1500ms steps(2, end) 1;
  transition:
    opacity 180ms ease-out,
    transform 180ms ease-out,
    visibility 0ms linear 0ms;
}

@keyframes welcomeFlash {
  0%, 14%, 32%, 52%, 100% { opacity: 0.98; }
  8%, 24%, 44% { opacity: 0.56; }
}

@media (prefers-reduced-motion: reduce) {
  body.welcome-msg-active .fieldWelcomeMsg {
    animation: none !important;
  }
}

.claimShareBtn {
  position: absolute;
  left: 50%;
  bottom: calc(0.2% + (60px * var(--ui-scale)));
  transform: translateX(-50%);
  width: min(41.3%, 252px);
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 176;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 420ms ease;
}

body.jumbotron-open.ticket-unlocked .claimShareBtn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  box-shadow: none;
}

.claimShareBtn__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.claimShareBtn:hover {
  filter: brightness(1.04);
}

.claimShareBtn:active {
  transform: translateX(-50%) translateY(2px);
  box-shadow: none;
}

.receiptPreviewOverlay {
  position: absolute;
  inset: 0;
  z-index: 230;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:
    clamp(10px, calc(18px * var(--ui-scale)), 22px)
    clamp(12px, calc(20px * var(--ui-scale)), 24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.receiptPreviewCard {
  position: relative;
  width: min(96%, 920px);
  height: min(92%, 1760px);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(var(--receipt-from-dx, 0px), var(--receipt-from-dy, 0px), 0) scale(0.2);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.receiptPreviewImage {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border-radius: 0;
  display: block;
}

.receiptPreviewHint {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, calc(14px * var(--ui-scale)), 18px);
  transform: translateX(-50%);
  width: min(92%, 760px);
  min-height: clamp(28px, calc(42px * var(--ui-scale)), 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, calc(8px * var(--ui-scale)), 10px) clamp(8px, calc(14px * var(--ui-scale)), 16px);
  border: 2px solid #0f1f44;
  background: rgba(8, 16, 36, 0.76);
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, calc(14px * var(--ui-scale)), 16px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  pointer-events: none;
}

#receiptPreviewCloseBtn {
  position: absolute;
  left: clamp(12px, calc(18px * var(--ui-scale)), 20px);
  bottom: calc(clamp(10px, calc(14px * var(--ui-scale)), 18px) + env(safe-area-inset-bottom, 0px));
  transform: translateY(0);
  z-index: 232;
}

.receiptPreviewHint__desktop,
.receiptPreviewHint__mobile {
  display: inline;
}

.receiptPreviewHint__mobile {
  display: none;
}

@media (pointer: coarse), (hover: none) {
  .receiptPreviewHint__desktop {
    display: none;
  }

  .receiptPreviewHint__mobile {
    display: inline;
  }
}

.subscribeOverlay {
  position: absolute;
  inset: 0;
  z-index: 228;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(8, 18, 46, 0.62);
}

.subscribeOverlay__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 760px);
  max-height: calc(100% - clamp(116px, calc(154px * var(--ui-scale)), 164px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, calc(14px * var(--ui-scale)), 18px);
  padding: clamp(14px, calc(24px * var(--ui-scale)), 30px);
  border: 2px solid #b2b4b1;
  background: #263c92;
  box-shadow:
    0 0 0 2px #b2b4b1,
    0 0 0 4px #108040,
    0 8px 0 rgba(5, 12, 30, 0.55);
  overflow: hidden;
}

.subscribeOverlay__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(8px, calc(10px * var(--ui-scale)), 12px);
  background: #108040;
  pointer-events: none;
}

.subscribeOverlay__panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(5px, calc(7px * var(--ui-scale)), 9px);
  background: #b2b4b1;
  pointer-events: none;
}

.subscribeOverlay__panel > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

.subscribeOverlay__logoLink {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-decoration: none;
}

.subscribeOverlay__logoLink--signature {
  align-self: flex-end;
  margin-left: auto;
  margin-right: clamp(2px, calc(4px * var(--ui-scale)), 6px);
  margin-top: clamp(2px, calc(4px * var(--ui-scale)), 6px);
  margin-bottom: clamp(2px, calc(4px * var(--ui-scale)), 6px);
  padding: clamp(10px, calc(14px * var(--ui-scale)), 18px);
  border: 1px solid transparent;
}

.subscribeOverlay__logoLink:hover {
  filter: brightness(1.06);
}

.subscribeOverlay__logo {
  width: clamp(60px, 9vw, 90px);
  height: auto;
  filter: brightness(0) invert(1);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.subscribeOverlay__title {
  margin: 0;
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(12px, calc(21px * var(--ui-scale)), 25px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

.subscribeOverlay__screen {
  position: relative;
  width: min(96%, 660px);
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: clamp(8px, calc(12px * var(--ui-scale)), 14px);
  border: 1px solid #b2b4b1;
  background: rgba(15, 35, 102, 0.88);
  box-shadow: inset 0 0 0 2px rgba(16, 132, 64, 0.38);
  overflow-y: hidden;
  overflow-x: visible;
}

.subscribeOverlay__screen::before,
.subscribeOverlay__screen::after {
  content: none;
}

.subscribeOverlay__screen > * {
  position: relative;
  z-index: 1;
}

.subscribeOverlay__body {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, calc(15px * var(--ui-scale)), 19px);
  line-height: 1.48;
  text-align: left;
  text-shadow: none;
}

.subscribeOverlay__body p {
  margin: 0 0 clamp(8px, calc(12px * var(--ui-scale)), 14px);
}

.subscribeOverlay__body p:last-child {
  margin-bottom: 0;
}

.subscribeOverlay__bodyLink {
  color: #69be28;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subscribeOverlay__bodyLink:hover {
  color: #ffffff;
}

.subscribeOverlay__kitMount {
  width: 100%;
  max-width: 640px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.subscribeOverlay__kitMount > * {
  width: 100%;
}

#subscribeCloseBtn {
  position: absolute;
  left: 3.2%;
  bottom: 3.4%;
  transform: translateY(0);
  z-index: 229;
}


body.subscribe-open .subscribeOverlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.subscribe-open #subscribeCloseBtn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.subscribe-open .uiOverlay__actions {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.subscribe-open #jumbotronCloseBtn,
body.subscribe-open #proposalCloseBtn,
body.subscribe-open #receiptPreviewCloseBtn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.receipt-preview-open .receiptPreviewOverlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.receipt-preview-opening .receiptPreviewCard {
  animation: receiptPreviewExpand 460ms cubic-bezier(0.18, 0.62, 0.35, 1) forwards;
}

body.receipt-preview-open:not(.receipt-preview-opening) .receiptPreviewCard {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.receipt-preview-open #receiptPreviewCloseBtn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.receipt-preview-open #jumbotronCloseBtn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.jumbotron-quiet-closing #jumbotronOverlay {
  opacity: 0 !important;
  transform: scale(0.98);
  pointer-events: none !important;
  transition: opacity 220ms ease, transform 220ms ease;
}

body.receipt-preview-open .uiOverlay__actions {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.receipt-preview-open .claimShareBtn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.receipt-preview-open .uiOverlay__headline,
body.receipt-preview-open .uiOverlay__headlineAlt {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.uiToast {
  position: absolute;
  left: 50%;
  bottom: calc(4.8% + clamp(92px, calc(150px * var(--ui-scale)), 190px));
  transform: translateX(-50%);
  max-width: min(86%, 620px);
  padding: clamp(6px, calc(10px * var(--ui-scale)), 12px) clamp(10px, calc(16px * var(--ui-scale)), 18px);
  border: 2px solid #0f1f44;
  background: rgba(8, 16, 36, 0.88);
  color: #ffffff;
  font-family: "Scoreboard60sLocal", "Scoreboard60s", "IBM Plex Mono", monospace;
  font-size: clamp(9px, calc(13px * var(--ui-scale)), 15px);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 177;
  transition: opacity 180ms ease;
}

body.ui-toast-show .uiToast {
  opacity: 1;
  visibility: visible;
}

@keyframes receiptPreviewExpand {
  0% {
    opacity: 0;
    transform: translate3d(var(--receipt-from-dx, 0px), var(--receipt-from-dy, 0px), 0) scale(0.2);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .receiptPreviewCard {
    transition: none !important;
    animation: none !important;
  }
}

#jumbotronImpactLayer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

#jumbotronImpactSprite {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: auto;
  opacity: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transform: translate3d(-9999px, -9999px, 0);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

#jumbotronGlassLayer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

#jumbotronGlassSprite {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: auto;
  opacity: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: left, top, width, opacity;
}

.jumbotronPanel.jumbotronFlicker .jumbotronLine {
  animation: jumbotronTextFlicker 760ms steps(2, end) both;
}

.jumbotronPanel.jumbotronOff .jumbotronContent {
  opacity: 0.06;
  filter: brightness(0.22) saturate(0.2);
}

.jumbotronPanel.jumbotronOff .jumbotronLine {
  text-shadow: none;
}

@keyframes jumbotronExpandIn {
  0% {
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--jumbotron-origin-dx), var(--jumbotron-origin-dy), 0)
      scaleX(0.16)
      scaleY(0.16);
    opacity: 0;
    filter: none;
  }
  82% {
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(0, 0, 0)
      scaleX(1.02)
      scaleY(1.02);
    opacity: 1;
  }
  100% {
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(0, 0, 0)
      scaleX(1)
      scaleY(1);
    opacity: 1;
    filter: none;
  }
}

@keyframes jumbotronExpandOut {
  0% {
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(0, 0, 0)
      scaleX(1)
      scaleY(1);
    opacity: 1;
    filter: none;
  }
  100% {
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--jumbotron-origin-dx), var(--jumbotron-origin-dy), 0)
      scaleX(0.16)
      scaleY(0.16);
    opacity: 0;
    filter: none;
  }
}

@keyframes jumbotronTextFlicker {
  0%, 8%, 16%, 32%, 48%, 64%, 80%, 100% { opacity: 1; filter: none; }
  4%, 12%, 24%, 40%, 56%, 72%, 88% { opacity: 0.22; filter: brightness(0.45); }
}

@media (prefers-reduced-motion: reduce) {
  .jumbotronPanel {
    transform: translate3d(-50%, -50%, 0) translate3d(0, 0, 0) scaleX(1) scaleY(1) !important;
    opacity: 1 !important;
    animation: none !important;
  }

}

@keyframes ledBlink {
  0% {
    opacity: 1;
    text-shadow:
      0 0 1px #69BE28,
      0 0 4px rgba(105, 190, 40, 0.8),
      0 0 9px rgba(105, 190, 40, 0.45);
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
    text-shadow:
      0 0 1px #69BE28,
      0 0 2px rgba(105, 190, 40, 0.42);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.layerAsset--flag {
  z-index: -1;
  transform: translate(var(--flag-lock-x, 0px), var(--flag-lock-y, 0px)) scale(var(--layer-scale));
  transition:
    transform 460ms cubic-bezier(0.22, 0.61, 0.36, 1) 1220ms,
    opacity 320ms linear 1220ms;
  opacity: 1;
}

.layerAsset--littleScreens {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 6;
  opacity: 1;
  transition: opacity 140ms steps(2, end);
}

.layerAsset--littleScreensLit {
  opacity: 0;
}

.layerWrap--endzone.little-screens-lit .layerAsset--littleScreensLit {
  opacity: 1;
}

#stadiumStage.stage--entering .layerWrap--endzone .layerAsset--flag {
  transform: translate(
      var(--flag-lock-x, 0px),
      calc(var(--flag-lock-y, 0px) + 44px)
    )
    scale(var(--layer-scale));
  opacity: 0;
}

.future-copy-block,
.gameday-page {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .layerWrap,
  .layerAsset--flag {
    transition: none !important;
  }

  #stadiumStage.stage--entering .layerWrap,
  .layerWrap {
    transform: translate(var(--x-final, 0px), var(--y-final, 0px)) !important;
    opacity: 1 !important;
  }

  #stadiumStage.stage--entering .layerWrap--endzone .layerAsset--flag,
  .layerAsset--flag {
    transform: translate(var(--flag-lock-x, 0px), var(--flag-lock-y, 0px)) scale(var(--layer-scale)) !important;
    opacity: 1 !important;
  }

  #splashText,
  .splash-line,
  .uiOverlay__headline,
  .uiOverlay__actions {
    transition: none !important;
    animation: none !important;
  }

  .uiOverlay {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .uiOverlay__headline,
  .uiOverlay__actions {
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
  }
}

.hero {
  border: 4px solid #111;
  background: #eff3ff;
  box-shadow:
    inset 0 0 0 2px #ffffff,
    5px 5px 0 #172f57;
  padding: 0;
}

.hero-kicker {
  margin: 0;
  background: #ff7db8;
  border-bottom: 3px solid #111;
  color: #fefefe;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.45rem, 0.7vw, 0.62rem) !important;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  padding: 8px;
}

.hero h1,
.module h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.8rem, 1.45vw, 1.1rem);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: var(--pixel-shadow);
}

.hero h1 {
  padding: 12px 12px 0;
}

.hero > p:last-child {
  padding: 0 12px 12px;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
}

.callout {
  border: 4px solid #111;
  background: #050607;
  box-shadow:
    inset 0 0 0 2px #5d626b,
    5px 5px 0 #172f57;
  padding: 10px 12px;
}

.callout p {
  margin: 0;
  color: #ffcc67;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.58rem, 0.95vw, 0.72rem);
  line-height: 1.7;
  text-transform: uppercase;
}

.module {
  border: 4px solid #111;
  background: #ecf0ff;
  box-shadow:
    inset 0 0 0 2px #ffffff,
    5px 5px 0 #172f57;
  padding: 12px;
}

.module p,
.footnote p {
  margin: 0;
  font-size: clamp(1.18rem, 1.65vw, 1.4rem);
}

.module--tracker {
  background: #d8e6ff;
}

.financial-context {
  margin: 0 0 10px !important;
}

.scoreboard {
  position: relative;
  margin: 0 auto;
  max-width: 640px;
  padding: 18px 34px 28px;
}

.scoreboard__crown {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  height: 16px;
  border: 3px solid #101215;
  background:
    repeating-linear-gradient(
      to right,
      #a4a7ad 0 18px,
      #777b82 18px 24px,
      #5e6168 24px 42px
    );
  box-shadow: 3px 3px 0 #0f223f;
}

.scoreboard__mount {
  position: absolute;
  top: 16px;
  width: 22px;
  bottom: 25px;
  border: 3px solid #121316;
  background:
    radial-gradient(circle at 50% 13px, #b5b9c2 0 2px, #30343a 2px 6px, transparent 6px),
    radial-gradient(circle at 50% 43px, #b5b9c2 0 2px, #30343a 2px 6px, transparent 6px),
    radial-gradient(circle at 50% 73px, #b5b9c2 0 2px, #30343a 2px 6px, transparent 6px),
    linear-gradient(180deg, #737780 0%, #3d4047 100%);
  box-shadow: inset 0 0 0 2px #1c1d22;
}

.scoreboard__mount--left {
  left: 4px;
}

.scoreboard__mount--right {
  right: 4px;
}

.scoreboard__bracket {
  position: absolute;
  left: 92px;
  right: 92px;
  bottom: 0;
  height: 17px;
  border: 3px solid #121316;
  background:
    repeating-linear-gradient(to right, #82858b 0 22px, #5e6066 22px 30px);
  box-shadow: inset 0 2px 0 #b2b5bc;
}

.scoreboard__bezel {
  position: relative;
  border: 8px solid #141518;
  background: linear-gradient(180deg, #575b63 0%, #353940 55%, #22252a 100%);
  box-shadow:
    4px 4px 0 #081a35,
    inset 0 0 0 3px #8a8f99,
    inset 0 0 0 8px #1a1d22;
  padding: 18px 12px;
}

.scoreboard__bezel::before,
.scoreboard__bezel::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 7px;
  background:
    repeating-linear-gradient(to right, #090b0e 0 12px, #6f737b 12px 16px, #090b0e 16px 34px);
  border-top: 1px solid #9ea2aa;
  border-bottom: 1px solid #101216;
}

.scoreboard__bezel::before {
  top: 6px;
}

.scoreboard__bezel::after {
  bottom: 6px;
}

.scoreboard__title {
  margin: 2px 0 10px;
  border: 3px solid #8b681b;
  background:
    repeating-linear-gradient(to right, rgba(0, 0, 0, 0.08) 0 10px, rgba(0, 0, 0, 0.14) 10px 14px),
    linear-gradient(180deg, #694c14 0%, #412d08 100%);
  color: #ffd06b;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.5rem, 0.78vw, 0.68rem);
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 6px;
}

.scoreboard__screen {
  border: 4px solid #0f1216;
  background:
    repeating-linear-gradient(to bottom, rgba(20, 26, 20, 0.22) 0 2px, rgba(0, 0, 0, 0.25) 2px 4px),
    #020304;
  box-shadow:
    inset 0 0 0 2px #373c45,
    inset 0 0 0 7px #090b0f;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr !important;
  padding: 12px 10px;
}

.scoreboard__panel {
  border: 3px solid #464c55;
  background: linear-gradient(180deg, #060809 0%, #030405 100%);
  box-shadow:
    inset 0 0 0 2px #2d3238,
    inset 0 0 0 6px #07090c;
  min-height: 146px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.scoreboard__panel h3 {
  margin: 2px 0 0;
  width: 100%;
  color: #8fd0f2;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.44rem, 0.68vw, 0.58rem);
  line-height: 1.7;
  text-transform: uppercase;
  text-align: center;
}

.scoreboard__digits {
  margin: auto 0 0;
  width: 100%;
  color: #108040;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.45vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: 0.7px;
  text-shadow:
    1px 0 #00280d,
    -1px 0 #00280d,
    0 1px #00280d,
    0 -1px #00280d;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.scoreboard-helper {
  margin: 10px 0 4px !important;
  font-size: clamp(0.82rem, 1.2vw, 1.02rem) !important;
  color: #bcffbc;
  text-align: center;
}

.scoreboard-cta {
  margin-top: 8px;
  padding: 10px 8px 4px;
  border: 3px solid var(--black);
  border-top: 0;
  background: #f3f3f3;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.scoreboard-cta p {
  margin: 0 !important;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(0.5rem, 0.8vw, 0.64rem) !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--blue);
}

.module--join {
  background: #eff3ff;
}

.future-copy-block form {
  display: grid;
  gap: 10px;
}

.future-copy-block label {
  display: grid;
  gap: 4px;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--blue);
}

.future-copy-block input,
.future-copy-block select,
.future-copy-block button {
  border: 3px solid var(--black);
  border-radius: 0;
  padding: 8px;
  font-family: "VT323", "Courier New", monospace;
  font-size: 1.35rem;
}

.future-copy-block input,
.future-copy-block select {
  background: #f8f8f8;
}

.future-copy-block button:not(.uiClose) {
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--green);
  transition: transform 120ms steps(2, end), box-shadow 120ms steps(2, end);
}

.future-copy-block button:not(.uiClose):hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--green);
}

.future-copy-block button:not(.uiClose):active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--green);
}

.form-message {
  min-height: 1.2em;
  color: var(--green);
  font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.footnote {
  border: 3px solid var(--black);
  background: #eef2ff;
  padding: 10px 12px;
  box-shadow: 4px 4px 0 #142d53;
}

@media (max-width: 768px) {
  .page {
    padding: 12px 10px 20px;
  }

  .hero,
  .module,
  .footnote,
  .callout {
    box-shadow: 4px 4px 0 #102444;
  }

  .scoreboard {
    max-width: 520px;
    padding: 14px 24px 24px;
  }

  .scoreboard__mount {
    width: 18px;
    left: 2px;
  }

  .scoreboard__mount--right {
    left: auto;
    right: 2px;
  }

  .scoreboard__bracket {
    left: 56px;
    right: 56px;
  }

  .scoreboard__panel {
    min-height: 120px;
  }

  .scoreboard-cta {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

}


/* LED message overlay for field goal mini-game */
.ledOverlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 120ms linear, visibility 120ms linear;
}

.ledOverlay--on {
  opacity: 1;
  visibility: visible;
}

.ledOverlay--off {
  opacity: 0;
  visibility: hidden;
}

.ledOverlay--message {
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2px, calc(4px * var(--ui-scale)), 6px);
}

.ledOverlay__chars {
  width: 100%;
  height: 82%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.ledOverlay--message .ledChar {
  font-size: clamp(9px, calc(21px * var(--ui-scale)), 21px);
  transform: none;
  margin: 0;
  animation-delay: var(--led-char-delay, 0ms);
}

.ledOverlay__score {
  width: 100%;
  margin-top: auto;
  text-align: center;
  color: #69BE28;
  font-family: "Scoreboard60s", "Press Start 2P", "VT323", monospace;
  font-size: clamp(10px, calc(18px * var(--ui-scale)), 22px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 1px #69BE28,
    0 0 4px rgba(105, 190, 40, 0.8),
    0 0 9px rgba(105, 190, 40, 0.4);
}

.fgScoreboardStatus {
  display: none !important;
}

body.field-goal-success .ledOverlay .ledChar {
  opacity: 1;
}

/* Field goal mini-game heading */
.fieldGoalHeading {
  position: absolute;
  left: 50%;
  top: 5.4%;
  width: min(92%, 980px);
  margin: 0;
  transform: translateX(-50%);
  color: #ffffff;
  font-family: "Press Start 2P", "VT323", "Courier New", monospace;
  font-size: clamp(9px, calc(18px * var(--frameScale)), 26px);
  line-height: 1.15;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #1a2d63,
    0 4px 0 rgba(8, 14, 32, 0.65);
  pointer-events: none;
  z-index: 233;
}
