/* BDRewards
   Black and red for Shadow, plus the fire gradient from BigDavid's Kick banner. */

:root {
  --bg: #0b0909;
  --surface: #151010;
  --surface-2: #1c1515;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);
  --hot-line: rgba(255, 52, 52, 0.34);
  --text: #f6f1f1;
  --muted: #a89e9e;
  --dim: #6f6565;
  --red: #ff3434;
  --red-deep: #c8121b;
  --ember: #ff8a1f;
  --gold: #ffd24a;
  --fire: linear-gradient(100deg, #ffd24a 0%, #ff8a1f 42%, #ff3434 78%, #d9121b 100%);
  --wrap: 1100px;
  --nav-h: 78px;
  --font: 'Work Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font: 500 16px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
  /* the hero glows are wider than a phone; clip sideways only so the embers can still rise behind the nav */
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: rgba(255, 52, 52, 0.4);
  color: #fff;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.num {
  font-variant-numeric: tabular-nums;
}

/* ---------- page backdrop ---------- */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.backdrop::before,
.backdrop::after {
  content: '';
  position: absolute;
  top: -20vh;
  bottom: -20vh;
  width: 70vw;
}

.backdrop::before {
  left: -44vw;
  background: radial-gradient(closest-side, rgba(220, 18, 28, 0.3), rgba(220, 18, 28, 0.08) 55%, transparent);
}

.backdrop::after {
  right: -44vw;
  background: radial-gradient(closest-side, rgba(255, 106, 24, 0.16), rgba(255, 70, 24, 0.05) 55%, transparent);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- live bar ---------- */

.livebar {
  position: relative;
  z-index: 45;
  background: linear-gradient(90deg, #7a0a10, #d9121b 45%, #ff3434);
}

.livebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.livebar__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.livebar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: ping-white 1.4s ease-out infinite;
}

.livebar__title {
  min-width: 0;
  max-width: 46ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.livebar__viewers {
  flex: none;
  opacity: 0.8;
  font-variant-numeric: tabular-nums;
}

.livebar__cta {
  flex: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s, border-color 0.25s;
}

.nav.is-scrolled,
.nav.is-open {
  background: rgba(11, 9, 9, 0.84);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}

.nav.is-open {
  background: rgba(11, 9, 9, 0.97);
}

/* three columns so the links stay centred on the page whatever sits on the right */
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.nav__end {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.btn-signup {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4b4b, #e3141d);
  box-shadow: 0 8px 26px -8px rgba(255, 40, 40, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-out), box-shadow 0.2s;
}

.btn-signup::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: sheen 5s ease-in-out 3s infinite;
}

.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(255, 40, 40, 1), inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-signup:active {
  transform: translateY(1px);
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--red), 0 0 0 5px rgba(255, 52, 52, 0.12), 0 0 26px rgba(255, 52, 52, 0.45);
}

.nav__links {
  display: flex;
  gap: 4px;
}

.nav__links a {
  position: relative;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a[aria-current='page'] {
  color: var(--red);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  transform: scaleX(0);
  transition: transform 0.28s var(--ease-out);
}

.nav__links a[aria-current='page']::after {
  transform: scaleX(1);
}

.socials {
  display: flex;
  gap: 2px;
}

.icon-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text);
  transition: color 0.15s, background-color 0.15s;
}

.icon-link:hover {
  color: var(--red);
  background: rgba(255, 255, 255, 0.05);
}

.icon-link svg {
  width: 18px;
  height: 18px;
}

.is-live .icon-link--kick::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--bg);
}

.nav__toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s var(--ease-out), background-color 0.2s;
}

.nav__toggle span {
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__toggle[aria-expanded='true'] span {
  background: transparent;
}

.nav__toggle[aria-expanded='true'] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded='true'] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__sheet {
  border-top: 1px solid var(--line);
  padding: 6px 0 22px;
}

.sheet-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sheet-link[aria-current='page'] {
  color: var(--red);
}

.nav__sheet .socials {
  margin-top: 14px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-out), box-shadow 0.2s, background-color 0.2s, border-color 0.2s;
}

.btn svg {
  flex: none;
  width: 17px;
  height: 17px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--hot {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(180deg, #ff4b4b, #e3141d);
  box-shadow: 0 8px 22px -10px rgba(255, 40, 40, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.btn--hot:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -10px rgba(255, 40, 40, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.btn--line {
  border: 1.5px solid var(--red);
  background-color: rgba(255, 52, 52, 0.04);
  background-image: linear-gradient(90deg, rgba(255, 52, 52, 0.22), rgba(255, 52, 52, 0.32));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: transform 0.18s var(--ease-out), box-shadow 0.25s, background-size 0.4s var(--ease-out);
}

.btn--block {
  width: 100%;
}

/* the copy-the-code chip */
.code {
  display: inline-flex;
  align-items: stretch;
  height: 52px;
  border-radius: 999px;
  border: 1.5px dashed rgba(255, 52, 52, 0.6);
  background: rgba(255, 52, 52, 0.06);
  transition: border-color 0.2s, background-color 0.2s;
}

.code:hover {
  border-color: var(--red);
  background: rgba(255, 52, 52, 0.12);
}

.code.is-copied {
  border-style: solid;
  border-color: var(--red);
}

.code__label {
  display: grid;
  place-items: center;
  min-width: 78px;
  padding: 0 14px 0 20px;
  border-right: 1.5px dashed rgba(255, 52, 52, 0.4);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.code.is-copied .code__label {
  color: var(--red);
}

.code__value {
  display: grid;
  place-items: center;
  padding: 0 4px 0 16px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.code__icon {
  display: grid;
  place-items: center;
  padding: 0 18px 0 12px;
  color: var(--red);
}

.code__icon svg {
  width: 18px;
  height: 18px;
}

.code .i-check,
.code.is-copied .i-copy {
  display: none;
}

.code.is-copied .i-check {
  display: block;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding: 60px 0 56px;
  text-align: center;
}

.hero__embers {
  position: absolute;
  top: calc(var(--nav-h) * -1);
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + var(--nav-h));
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 58%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 58%, transparent);
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: -2;
  width: min(940px, 130vw);
  height: 540px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255, 52, 52, 0.2), rgba(255, 52, 52, 0.05) 60%, transparent);
  pointer-events: none;
}

.partner {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1b1414, #120e0e);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 40px -20px #000;
}

.partner img {
  width: auto;
  height: 22px;
}

.partner::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 16px 2px rgba(255, 52, 52, 0.8);
}

.display {
  margin-top: 28px;
  font-size: clamp(42px, 7.4vw, 86px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hot {
  color: var(--red);
  text-shadow: 0 0 24px rgba(255, 52, 52, 0.25);
}

/* the monthly total under the big weekly number */
.display-sub {
  margin-top: 16px;
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--muted);
}

.display-sub b {
  color: var(--text);
  font-weight: 900;
}

.lede {
  max-width: 580px;
  margin: 22px auto 0;
  font-size: 17.5px;
  color: var(--muted);
  text-wrap: pretty;
}

.lede b {
  color: var(--text);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero__timer {
  margin-top: 26px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero__timer b {
  color: var(--text);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.15s;
}

.scroll-cue:hover {
  color: var(--text);
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  animation: nudge 2s ease-in-out infinite;
}

/* ---------- section scaffolding ---------- */

.section {
  padding: 32px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

.h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s var(--ease-out);
}

.text-link:hover svg {
  transform: translateX(3px);
}

/* ---------- home: offer cards ---------- */

.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
  margin-top: 40px;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 52, 52, 0.1), rgba(255, 52, 52, 0) 40%), var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 26px;
  right: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--fire);
  opacity: 0.7;
}

.offer--main {
  padding: 46px 28px 32px;
  border-color: transparent;
  background: linear-gradient(180deg, rgba(255, 120, 30, 0.17), rgba(255, 52, 52, 0) 46%) padding-box,
    linear-gradient(var(--surface), var(--surface)) padding-box, var(--fire) border-box;
  box-shadow: 0 40px 90px -40px rgba(255, 90, 20, 0.55);
}

.offer--main::before {
  display: none;
}

.offer__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--fire);
  color: #1d0a04;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.offer__title .hot {
  text-shadow: none;
}

.offer--main .offer__title {
  font-size: 32px;
}

.offer__big {
  display: block;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--red);
  text-shadow: 0 0 36px rgba(255, 52, 52, 0.45);
}

.offer__sub {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.checks {
  display: grid;
  gap: 13px;
  flex: 1;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ddd3d3;
}

.checks svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--red);
}

.checks b {
  color: var(--red);
  font-weight: 800;
}

/* ---------- home: standings preview ---------- */

.mini {
  margin-top: 26px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--hot-line);
  border-radius: 18px;
  background: rgba(20, 15, 15, 0.72);
  overflow: hidden;
}

.mini li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto 90px;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
}

.mini li:first-child {
  border-top: 0;
}

.mini__rank {
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.mini__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.mini__pts {
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.mini__pts small {
  margin-left: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--dim);
}

.mini__prize {
  text-align: right;
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.mini li.is-first .mini__rank,
.mini li.is-first .mini__prize {
  color: var(--ember);
}

.mini .is-open .mini__name {
  color: var(--dim);
  font-weight: 600;
}

/* ---------- leaderboard: title ---------- */

.board-title {
  margin-top: 26px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-line > span {
  white-space: nowrap;
}

.meta-line > span + span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 18px;
  border-radius: 50%;
  vertical-align: middle;
  background: var(--red);
}

.meta-line b {
  color: var(--text);
  font-weight: 900;
}

/* ---------- podium ---------- */

.podium {
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  align-items: end;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 46px;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 36px 18px 0;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--hot-line);
  background: linear-gradient(180deg, rgba(255, 52, 52, 0.16), rgba(255, 52, 52, 0) 58%), var(--surface);
  animation: rise 0.6s var(--ease-out) backwards;
}

.pcard--1 {
  order: 2;
  margin-bottom: 26px;
  padding-top: 50px;
  border-color: transparent;
  background: linear-gradient(180deg, rgba(255, 138, 31, 0.22), rgba(255, 52, 52, 0) 60%) padding-box,
    linear-gradient(var(--surface), var(--surface)) padding-box, var(--fire) border-box;
  box-shadow: 0 40px 100px -40px rgba(255, 100, 20, 0.6);
}

.pcard--2 {
  order: 1;
  animation-delay: 0.12s;
}

.pcard--3 {
  order: 3;
  animation-delay: 0.22s;
}

.pcard__ghost {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 88px;
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.pcard__place {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--hot-line);
  background: #1b1414;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pcard__crown {
  position: absolute;
  top: -31px;
  left: 50%;
  width: 54px;
  transform: translateX(-50%);
  filter: drop-shadow(0 6px 18px rgba(255, 138, 31, 0.6));
}

.avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: radial-gradient(circle at 32% 28%, #2f2323, #120d0d 70%);
  box-shadow: 0 0 0 2px rgba(255, 52, 52, 0.7), 0 0 0 8px rgba(255, 52, 52, 0.08);
}

.avatar svg {
  width: 40%;
  height: 40%;
  color: var(--muted);
}

.pcard--1 .avatar {
  width: 96px;
  height: 96px;
  font-size: 30px;
  box-shadow: 0 0 0 2px var(--ember), 0 0 0 9px rgba(255, 138, 31, 0.12), 0 0 50px rgba(255, 110, 20, 0.45);
}

.pcard--empty .avatar {
  color: var(--dim);
  box-shadow: 0 0 0 1px var(--line-strong);
}

.pcard__base {
  align-self: stretch;
  margin: 22px -18px 0;
  padding: 30px 16px 24px;
  border-top: 1px solid var(--hot-line);
  border-radius: 50% 50% 19px 19px / 44px 44px 19px 19px;
  background: linear-gradient(180deg, #130e0e, #0f0b0b);
}

.pcard--1 .pcard__base {
  padding-bottom: 30px;
  border-top-color: rgba(255, 138, 31, 0.6);
}

.pcard__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.pcard__name svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.pcard--1 .pcard__name {
  font-size: 27px;
}

.pcard--empty .pcard__name {
  color: var(--dim);
  font-weight: 700;
}

.pcard__pts {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.pcard__pts small {
  margin-left: 5px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--dim);
}

.pcard__wager {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.pcard__prize {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 52, 52, 0.28);
  background: rgba(255, 52, 52, 0.1);
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.pcard__prize svg {
  width: 16px;
  height: 16px;
}

.pcard--1 .pcard__prize {
  border-color: transparent;
  background: var(--fire);
  color: #1d0a04;
  font-size: 20px;
  box-shadow: 0 10px 30px -10px rgba(255, 110, 20, 0.8);
}

/* ---------- countdown ---------- */

.race-clock {
  margin-top: 64px;
  text-align: center;
}

.race-clock__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
}

.countdown__cell {
  min-width: 84px;
  padding: 14px 10px 11px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1a1414, #110d0d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.countdown__num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown__unit {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.countdown.is-over .countdown__num {
  color: var(--dim);
}

.race-clock__ends {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.race-over {
  margin-top: 14px;
}

.race-over b {
  display: block;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.race-over span {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- standings table ---------- */

.board {
  max-width: 900px;
  margin: 0 auto;
}

.board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.pulse {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: ping-red 1.8s ease-out infinite;
}

.updated.is-error .pulse {
  animation: none;
  background: var(--dim);
}

.help-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.15s;
}

.help-link:hover {
  color: var(--text);
}

.help-link svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* ---------- verification note ---------- */

.verify {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 44px;
  padding: 22px 26px 22px 24px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--hot-line);
  background: linear-gradient(100deg, rgba(255, 52, 52, 0.1), rgba(255, 52, 52, 0) 62%), var(--surface);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.verify::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--fire);
}

.verify__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 52, 52, 0.35);
  background: rgba(255, 52, 52, 0.12);
  color: var(--red);
  transition: transform 0.4s var(--ease-out), box-shadow 0.3s;
}

.verify__icon svg {
  width: 22px;
  height: 22px;
}

.verify__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.verify__text {
  max-width: 72ch;
  margin-top: 6px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #ddd3d3;
}

.cols,
.row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 150px 120px 104px;
  align-items: center;
  column-gap: 12px;
  padding: 0 22px;
}

.cols {
  height: 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.cols > :nth-child(n + 3),
.row > :nth-child(n + 3) {
  text-align: right;
}

.cols .c-prize {
  color: var(--red);
}

.rows {
  border: 1px solid var(--hot-line);
  border-radius: 18px;
  background: rgba(20, 15, 15, 0.72);
  overflow: hidden;
}

.row {
  min-height: 62px;
  border-top: 1px solid var(--line);
  transition: background-color 0.15s;
}

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

.row:hover {
  background: rgba(255, 52, 52, 0.045);
}

.row__rank {
  font-size: 15px;
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.row__player {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.row__name {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-weight: 800;
}

.row__name span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row__name svg {
  flex: none;
  width: 14px;
  height: 14px;
  color: var(--muted);
}

.row__sub {
  display: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

.row__wager {
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.row__pts {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.row__prize {
  position: relative;
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.row__prize::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: var(--line-strong);
}

.row__prize.is-none {
  color: var(--dim);
  font-weight: 600;
}

.row--open .row__name {
  color: var(--dim);
  font-weight: 600;
}

.row--open .row__wager,
.row--open .row__pts {
  color: var(--dim);
}

.cents {
  color: var(--dim);
}

.row--open .row__name,
.row--open .row__rank {
  opacity: 0.75;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--hot-line);
  background: rgba(255, 52, 52, 0.07);
  font-size: 14px;
  font-weight: 600;
  color: #ffd6d6;
}

.empty-board {
  padding: 28px 22px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.empty-board b {
  color: var(--text);
}

/* ---------- rule lists (leaderboard + bonuses) ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  padding-top: 88px;
}

.split__side .lede {
  margin: 16px 0 0;
  font-size: 16px;
}

.split__side .hero__actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.numbered {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: n;
  border-top: 1px solid var(--line);
}

.numbered li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: n;
  font-size: 15.5px;
  color: #d3c9c9;
}

.numbered li::before {
  content: counter(n, decimal-leading-zero);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--red);
}

.numbered b {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.fineprint {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
  font-size: 13.5px;
  color: var(--dim);
}

.fineprint li {
  display: flex;
  gap: 10px;
}

.fineprint li::before {
  content: '';
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}

/* ---------- bonuses: milestone ladder ---------- */

.tiers {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.tier {
  --heat: 0;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 12px 12px 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  animation: rise 0.5s var(--ease-out) backwards;
}

.tier__heat {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: calc(34% + var(--heat) * 66%);
  border-right: 1px solid rgba(255, 110, 40, 0.7);
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(255, 52, 52, 0) 0%, rgba(255, 52, 52, 0.14) 55%, rgba(255, 96, 30, 0.34) 100%);
  opacity: calc(0.5 + var(--heat) * 0.5);
}

.tier__lvl {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--hot-line);
  background: #0f0b0b;
  line-height: 1;
  text-align: center;
}

.tier__lvl small {
  display: block;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--dim);
}

.tier__lvl span {
  display: block;
  margin-top: 3px;
  font-size: 17px;
  font-weight: 900;
}

.tier__wager {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.tier__wager small {
  margin-right: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.tier__reward {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.tier__reward b {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.tier .btn {
  height: 48px;
  padding: 0 24px;
}

.tier--top {
  border-color: transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--fire) border-box;
}

.tier--top .tier__lvl {
  border-color: rgba(255, 138, 31, 0.7);
  color: var(--gold);
}

.tier--top .tier__reward {
  color: var(--ember);
}

/* ---------- loading placeholders ---------- */

.skel {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.skel::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  animation: shimmer 1.4s infinite;
}

.pcard .skel {
  margin: 0 auto;
}

/* ---------- footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding: 40px 0 36px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 9, 9, 0.6), var(--bg));
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__copy {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
}

.footer__copy b {
  color: var(--muted);
}

.age {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #110d0d;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--dim);
}

.age__badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--dim);
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
}

.age a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- 404 ---------- */

.lost {
  padding: 120px 0 80px;
  text-align: center;
}

.lost__code {
  font-size: clamp(90px, 18vw, 180px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}

/* ---------- motion ---------- */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes ping-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 52, 52, 0.6);
  }
  100% {
    box-shadow: 0 0 0 9px rgba(255, 52, 52, 0);
  }
}

@keyframes ping-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .offers {
    grid-template-columns: minmax(0, 1fr);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
  }

  .offer--main {
    order: -1;
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-top: 72px;
  }
}

@media (max-width: 800px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
  }

  .nav__links,
  .nav__end .socials {
    display: none;
  }

  .nav__toggle {
    display: grid;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 68px;
  }

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .btn-signup {
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .nav__end {
    gap: 10px;
  }

  .hero {
    padding: 44px 0 40px;
  }

  .lede {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .code {
    justify-content: space-between;
  }

  .verify {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }

  /* on phones the facts become little chips, so wrapping never strands a separator dot */
  .meta-line {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .meta-line > span {
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .meta-line > span + span::before {
    display: none;
  }

  .meta-line .meta-extra {
    display: none;
  }

  .livebar__title {
    display: none;
  }

  /* podium stays three-across, just tighter */
  .podium {
    gap: 8px;
    grid-template-columns: 1fr 1.12fr 1fr;
    padding-top: 30px;
  }

  .pcard {
    padding: 26px 6px 0;
    border-radius: 16px;
  }

  .pcard--1 {
    padding-top: 34px;
    margin-bottom: 14px;
  }

  .pcard__base {
    margin: 16px -6px 0;
    padding: 20px 4px 16px;
    border-radius: 50% 50% 15px 15px / 24px 24px 15px 15px;
  }

  .pcard--1 .pcard__base {
    padding-bottom: 18px;
  }

  .pcard__ghost {
    top: 8px;
    right: 8px;
    font-size: 54px;
  }

  .pcard__place {
    padding: 4px 9px;
    font-size: 9.5px;
  }

  .pcard__crown {
    top: -24px;
    width: 42px;
  }

  .avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
    box-shadow: 0 0 0 2px rgba(255, 52, 52, 0.7), 0 0 0 5px rgba(255, 52, 52, 0.08);
  }

  .pcard--1 .avatar {
    width: 60px;
    height: 60px;
    font-size: 19px;
    box-shadow: 0 0 0 2px var(--ember), 0 0 0 6px rgba(255, 138, 31, 0.12), 0 0 30px rgba(255, 110, 20, 0.45);
  }

  .pcard__name,
  .pcard--1 .pcard__name {
    font-size: 14.5px;
  }

  .pcard__name svg {
    width: 12px;
    height: 12px;
  }

  .pcard__pts {
    margin-top: 4px;
    font-size: 12.5px;
  }

  .pcard__pts small {
    display: block;
    margin: 1px 0 0;
    font-size: 9px;
  }

  .pcard__wager {
    font-size: 11px;
  }

  .pcard__prize,
  .pcard--1 .pcard__prize {
    gap: 5px;
    margin-top: 12px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .pcard__prize svg {
    width: 12px;
    height: 12px;
  }

  .race-clock {
    margin-top: 48px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown__cell {
    min-width: 70px;
    padding: 12px 6px 9px;
  }

  .countdown__num {
    font-size: 28px;
  }

  .board__bar {
    align-items: flex-start;
  }

  .cols,
  .row {
    grid-template-columns: 34px minmax(0, 1fr) 84px 62px;
    column-gap: 8px;
    padding: 0 14px;
  }

  .cols .c-wager,
  .row__wager {
    display: none;
  }

  .row__sub {
    display: block;
  }

  .row__prize::before {
    display: none;
  }

  .mini li {
    grid-template-columns: 30px minmax(0, 1fr) auto 56px;
    gap: 10px;
    padding: 0 16px;
  }

  .mini__pts small {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .tier {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 72px;
    padding: 10px 10px 10px 10px;
  }

  .tier__lvl {
    width: 44px;
    height: 44px;
  }

  .tier__lvl small {
    font-size: 7.5px;
  }

  .tier__lvl span {
    font-size: 14px;
  }

  .tier__wager {
    font-size: 17px;
  }

  .tier__wager small {
    display: block;
    margin: 0 0 1px;
    font-size: 9.5px;
  }

  .tier__reward {
    font-size: 11px;
  }

  .tier__reward b {
    font-size: 13px;
  }

  .tier .btn {
    height: 40px;
    padding: 0 16px;
    font-size: 11.5px;
  }

  .age {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .code__label {
    min-width: 0;
    padding: 0 10px 0 16px;
  }

  .countdown__cell {
    min-width: 62px;
  }
}

.pcard__crown svg {
  width: 100%;
  height: auto;
}

.code__value {
  -webkit-user-select: all;
  user-select: all;
}

/* ---------- entrance ---------- */

.hero .partner,
.hero .display,
.hero .display-sub,
.hero .board-title,
.hero .meta-line,
.hero .lede,
.hero .hero__actions,
.hero .hero__timer,
.hero .scroll-cue,
.hero .race-clock {
  animation: rise 0.7s var(--ease-out) backwards;
}

.hero .display,
.hero .board-title {
  animation-delay: 0.06s;
}

.hero .display-sub {
  animation-delay: 0.12s;
}

.hero .meta-line {
  animation-delay: 0.16s;
}

.hero .lede {
  animation-delay: 0.2s;
}

.hero .hero__actions {
  animation-delay: 0.26s;
}

.hero .hero__timer,
.hero .race-clock {
  animation-delay: 0.32s;
}

.hero .scroll-cue {
  animation-delay: 0.38s;
}

@keyframes sheen {
  0%,
  72% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

/* ---------- first-load intro ---------- */

.intro {
  display: none;
}

html.intro {
  overflow: hidden;
}

html.intro .intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: radial-gradient(60vmax 60vmax at 50% 50%, rgba(200, 16, 26, 0.18), transparent 62%), var(--bg);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.12s;
}

/* hot edge you see as the curtain lifts */
.intro::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--fire);
  box-shadow: 0 0 30px 6px rgba(255, 90, 30, 0.55);
}

.intro.is-leaving {
  transform: translateY(-100%);
}

/* hold the page's own entrance until the curtain goes up */
html.intro:not(.intro-out) :is(.pcard, .tier, .hero .partner, .hero .display, .hero .display-sub, .hero .board-title, .hero .meta-line, .hero .lede, .hero .hero__actions, .hero .hero__timer, .hero .scroll-cue, .hero .race-clock) {
  animation-play-state: paused;
}

.intro__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.45s var(--ease-out);
}

.intro.is-leaving .intro__stage {
  opacity: 0;
  transform: translateY(-14px) scale(0.94);
}

.intro__glow {
  position: absolute;
  left: 50%;
  top: 80px;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 52, 52, 0.36), rgba(255, 52, 52, 0.08) 55%, transparent);
  animation: intro-breathe 1.8s ease-in-out infinite;
}

.intro__mark {
  position: relative;
  width: 160px;
  height: 160px;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(255, 52, 52, 0.45));
  animation: intro-flash 0.7s ease-out 1.05s both;
}

.intro__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 2;
}

.intro__ring {
  fill: none;
  stroke: url(#bd-fire);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  transform: rotate(-90deg);
  transform-origin: 80px 80px;
  animation: intro-draw 0.95s var(--ease-out) 0.1s backwards;
}

.intro__orbit {
  fill: none;
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 9 91;
  transform-origin: 80px 80px;
  filter: drop-shadow(0 0 4px #ff8a1f);
  animation: intro-spin 1.1s linear 1.05s infinite, intro-in 0.3s ease 1.05s backwards;
}

.intro__letter {
  fill: url(#bd-face);
  stroke: var(--red);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-dasharray: 100 100;
  animation: intro-draw 0.85s var(--ease-out) 0.25s backwards, intro-fill 0.35s ease-out 0.95s backwards;
}

.intro__letter + .intro__letter {
  animation-delay: 0.38s, 1.02s;
}

.intro__sparks {
  position: absolute;
  left: 50%;
  top: 80px;
}

.intro__sparks i {
  position: absolute;
  left: -2.5px;
  top: -2.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd24a;
  box-shadow: 0 0 10px 2px rgba(255, 138, 31, 0.9);
  opacity: 0;
  animation: intro-spark 0.8s var(--ease-out) 1.08s forwards;
}

.intro__sparks i:nth-child(odd) {
  background: #ff5a2e;
  animation-duration: 0.95s;
}

.intro__bar {
  width: 150px;
  height: 3px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.intro__bar i {
  display: block;
  width: 86%;
  height: 100%;
  background: var(--fire);
  box-shadow: 0 0 12px rgba(255, 110, 30, 0.8);
  animation: intro-bar 1.6s var(--ease-out) 0.15s backwards;
}

.intro.is-leaving .intro__bar i {
  width: 100%;
  animation: intro-bar-done 0.25s ease-out backwards;
}

/* these animate from hidden to the resting styles, so if animations never run the logo still shows */
@keyframes intro-draw {
  from {
    stroke-dashoffset: 100;
  }
}

@keyframes intro-fill {
  from {
    fill-opacity: 0;
  }
}

@keyframes intro-in {
  from {
    opacity: 0;
  }
}

@keyframes intro-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes intro-breathe {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes intro-flash {
  0% {
    filter: drop-shadow(0 0 0 rgba(255, 60, 40, 0));
  }
  35% {
    filter: drop-shadow(0 0 22px rgba(255, 90, 40, 0.95)) brightness(1.35);
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 52, 52, 0.45));
  }
}

@keyframes intro-spark {
  0% {
    opacity: 1;
    transform: rotate(var(--a)) translateX(46px) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--a)) translateX(122px) scale(0.3);
  }
}

@keyframes intro-bar {
  from {
    width: 0;
  }
}

@keyframes intro-bar-done {
  from {
    width: 86%;
  }
}

/* ---------- hover ---------- */

/* transitions live outside the media query so things ease back when the pointer leaves */
.brand__logo {
  transition: transform 0.45s var(--ease-out), box-shadow 0.3s;
}

.icon-link svg,
.code__icon svg,
.help-link svg {
  transition: transform 0.3s var(--ease-out), filter 0.25s;
}

.btn--hot::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  z-index: -1;
  width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease-out);
  pointer-events: none;
}

.code {
  transition: border-color 0.2s, background-color 0.2s, transform 0.18s var(--ease-out), box-shadow 0.25s;
}

.partner::after {
  transition: left 0.35s var(--ease-out), right 0.35s var(--ease-out);
}

.offer {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.offer::before {
  transition: left 0.4s var(--ease-out), right 0.4s var(--ease-out), opacity 0.3s;
}

.pcard {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.avatar {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.pcard__ghost {
  transition: transform 0.4s var(--ease-out), -webkit-text-stroke-color 0.3s;
}

.mini li {
  position: relative;
}

/* red marker that slides in on the left of a hovered standings row */
.row::before,
.mini li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  transform: scaleY(0);
  transition: transform 0.25s var(--ease-out);
}

.row {
  position: relative;
}

.row__rank,
.row__player,
.mini__rank,
.mini__name {
  transition: transform 0.25s var(--ease-out);
}

.tier {
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.tier__heat {
  transition: width 0.5s var(--ease-out), opacity 0.3s;
}

.tier__lvl {
  transition: transform 0.35s var(--ease-out), border-color 0.3s, color 0.3s;
}

.countdown__cell {
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.numbered li {
  transition: color 0.25s;
}

.numbered li::before {
  transition: transform 0.25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand__logo {
    transform: rotate(-10deg) scale(1.07);
    box-shadow: 0 0 0 2px var(--red), 0 0 0 6px rgba(255, 52, 52, 0.2), 0 0 38px rgba(255, 52, 52, 0.75);
  }

  .nav__links a:hover::after {
    transform: scaleX(1);
  }

  .icon-link:hover svg {
    transform: translateY(-2px) scale(1.14) rotate(-6deg);
    filter: drop-shadow(0 0 8px rgba(255, 52, 52, 0.75));
  }

  .btn--hot:hover::after {
    left: 130%;
  }

  .btn--line:hover {
    background-size: 100% 100%;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px -14px rgba(255, 52, 52, 0.7);
  }

  .code:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px -16px rgba(255, 52, 52, 0.8);
  }

  .code:hover .code__icon svg,
  .help-link:hover svg {
    transform: rotate(-12deg) scale(1.15);
  }

  .partner:hover::after {
    left: 6%;
    right: 6%;
  }

  .offer:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px -34px rgba(255, 52, 52, 0.55);
  }

  .offer:not(.offer--main):hover {
    border-color: var(--hot-line);
  }

  .offer:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
  }

  .offer--main:hover {
    box-shadow: 0 44px 100px -36px rgba(255, 100, 20, 0.75);
  }

  .pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px -34px rgba(255, 52, 52, 0.6);
  }

  .pcard--1:hover {
    box-shadow: 0 44px 110px -36px rgba(255, 110, 20, 0.8);
  }

  .pcard:hover .avatar {
    transform: scale(1.07);
  }

  .pcard:hover .pcard__ghost {
    transform: translateY(-4px);
    -webkit-text-stroke-color: rgba(255, 52, 52, 0.4);
  }

  .pcard--1:hover .pcard__crown {
    animation: crown-bob 0.9s ease-in-out infinite;
  }

  .row:hover::before,
  .mini li:hover::before {
    transform: scaleY(1);
  }

  .row:hover .row__rank,
  .row:hover .row__player,
  .mini li:hover .mini__rank,
  .mini li:hover .mini__name {
    transform: translateX(4px);
  }

  .tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -26px rgba(255, 52, 52, 0.6);
  }

  .tier:not(.tier--top):hover {
    border-color: var(--hot-line);
  }

  .tier:hover .tier__heat {
    width: calc(42% + var(--heat) * 58%);
    opacity: 1;
  }

  .tier:hover .tier__lvl {
    transform: rotate(-10deg) scale(1.06);
    border-color: var(--red);
    color: var(--text);
  }

  .countdown__cell:hover {
    transform: translateY(-3px);
    border-color: var(--hot-line);
  }

  .verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px -30px rgba(255, 52, 52, 0.55);
  }

  .verify:hover .verify__icon {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 0 22px rgba(255, 52, 52, 0.45);
  }

  .numbered li:hover {
    color: var(--text);
  }

  .numbered li:hover::before {
    transform: translateX(4px);
  }
}

@keyframes crown-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) translateY(-5px) rotate(-4deg);
  }
}

.footer__legal {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--dim);
}

.footer__legal b {
  color: var(--muted);
}

/* loader: three pulsing bars, fades out */
.bars { display: flex; align-items: center; gap: 6px; height: 48px; }
.bars i { width: 3px; height: 16px; border-radius: 3px; background: #fff; animation: bar-pulse 0.9s ease-in-out infinite; }
.bars i:nth-child(2) { animation-delay: 0.15s; }
.bars i:nth-child(3) { animation-delay: 0.3s; }
@keyframes bar-pulse { 0%, 100% { height: 16px; opacity: 0.5; } 50% { height: 48px; opacity: 1; } }
html.intro .intro { background: var(--bg); transition: opacity 0.5s ease 0.1s; }
.intro::after { display: none; }
.intro.is-leaving { transform: none; opacity: 0; }
.hero .display { font-size: clamp(40px, 6.4vw, 76px); }

/* ---------- de-slop pass: flatter, fewer effects ---------- */
.hero__embers, .hero__glow, .grain, .pcard__ghost, .offer__tag, .offer::before, .eyebrow::before, .btn--hot::after, .btn-signup::after { display: none !important; }
.backdrop::before { background: radial-gradient(closest-side, rgba(220, 18, 28, 0.12), transparent); }
.backdrop::after { background: none; }
.hot, .offer__big, .display, .board-title { text-shadow: none !important; }
.partner { box-shadow: none; }
.partner::after { box-shadow: none; left: 30%; right: 30%; }
.btn--hot, .btn-signup { background: var(--red); box-shadow: none !important; }
.btn--hot:hover, .btn-signup:hover { background: #ff4a4a; }
.brand__logo { box-shadow: 0 0 0 2px var(--red); }
.brand:hover .brand__logo { box-shadow: 0 0 0 2px var(--red); }
/* cards: plain surfaces, one solid accent border */
.offer, .offer--main { background: var(--surface); box-shadow: none !important; border: 1px solid var(--line); }
.offer--main { border-color: var(--red); padding-top: 32px; }
.pcard { background: var(--surface); box-shadow: none !important; }
.pcard--1 { background: var(--surface); border: 1px solid var(--red); }
.pcard__crown { filter: none; }
.avatar, .pcard--1 .avatar { box-shadow: 0 0 0 2px var(--line-strong) !important; background: #1a1414; }
.pcard--1 .avatar { box-shadow: 0 0 0 2px var(--red) !important; }
.pcard__prize, .pcard--1 .pcard__prize { background: rgba(255, 52, 52, 0.1); color: var(--red); border: 1px solid rgba(255, 52, 52, 0.3); box-shadow: none; }
.pcard:hover, .offer:hover, .tier:hover, .verify:hover { box-shadow: none !important; }
.verify { background: var(--surface); }
.verify::before { background: var(--red); }
.tier--top { background: var(--surface); border-color: var(--red); }
.row::before, .mini li::before { box-shadow: none; }
.nav__links a::after { box-shadow: none; }
/* calmer type: less letter-spacing, fewer micro caps */
.meta-line, .eyebrow, .offer__sub, .checks li, .race-clock__label, .race-clock__ends, .hero__timer, .cols { letter-spacing: 0.06em; }
.checks li { text-transform: none; font-size: 14.5px; font-weight: 600; letter-spacing: 0; }
