:root {
  --ink: #09050f;
  --ink-soft: #100718;
  --ink-raised: #170b22;
  --violet: #9b5cff;
  --violet-deep: #54227c;
  --cyan: #57d9ef;
  --red: #f04361;
  --gold: #d8b86d;
  --gold-bright: #f3dda0;
  --ivory: #f7f0ff;
  --text: #ede5f7;
  --muted: #b9adc8;
  --faint: #877b94;
  --line: rgba(216, 184, 109, 0.2);
  --line-soft: rgba(255, 255, 255, 0.08);
  --surface: rgba(14, 7, 22, 0.82);
  --surface-solid: #12091a;
  --display: "Cinzel", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 75px rgba(2, 1, 7, 0.58);
  --page: min(1180px, calc(100vw - 2.5rem));
}

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

html {
  min-width: 320px;
  overflow-x: clip;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 5%, rgba(101, 39, 154, 0.28), transparent 30rem),
    radial-gradient(circle at 90% 25%, rgba(240, 67, 97, 0.09), transparent 26rem),
    radial-gradient(circle at 55% 68%, rgba(87, 217, 239, 0.06), transparent 34rem),
    linear-gradient(145deg, #0d0613 0%, var(--ink) 46%, #100718 100%);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, transparent 48%, rgba(0, 0, 0, 0.42));
}

::selection {
  color: #16091f;
  background: var(--gold-bright);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: #16091f;
  background: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.ambient,
.star-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.ambient {
  filter: blur(70px);
  opacity: 0.55;
}

.ambient-one {
  background: radial-gradient(circle at 20% 16%, rgba(133, 55, 206, 0.2), transparent 38%);
  animation: ambientPulse 14s ease-in-out infinite;
}

.ambient-two {
  background: radial-gradient(circle at 82% 74%, rgba(33, 157, 182, 0.1), transparent 34%);
  animation: ambientPulse 18s ease-in-out infinite reverse;
}

.star-field {
  opacity: 0.24;
  background-image:
    radial-gradient(1px 1px at 30px 42px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 110px 88px, rgba(243, 221, 160, 0.55), transparent),
    radial-gradient(2px 2px at 205px 135px, rgba(163, 116, 220, 0.45), transparent),
    radial-gradient(1px 1px at 278px 28px, rgba(255, 255, 255, 0.44), transparent);
  background-size: 320px 190px;
  animation: starDrift 32s linear infinite;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.8rem 0;
  pointer-events: none;
}

.site-nav {
  position: relative;
  width: var(--page);
  min-height: 66px;
  margin-inline: auto;
  padding: 0.55rem 0.62rem 0.55rem 0.78rem;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  border: 1px solid rgba(216, 184, 109, 0.2);
  border-radius: 10px;
  background: rgba(8, 4, 13, 0.8);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  pointer-events: auto;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 6px;
  pointer-events: none;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 109, 0.25);
  border-radius: 50%;
  background: rgba(37, 13, 48, 0.72);
  box-shadow: 0 0 18px rgba(240, 67, 97, 0.14);
}

.brand-mark img {
  width: 52px;
  height: 54px;
  max-width: none;
  object-fit: cover;
  object-position: 50% 18%;
  transform: translateY(4px) scale(1.22);
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.45rem);
}

.nav-links a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ivory);
}

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

.menu-button {
  display: none;
}

.button {
  min-height: 48px;
  padding: 0.82rem 1.14rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button span {
  font-size: 0.95rem;
}

.button-gold {
  color: #1a0c22;
  background: linear-gradient(135deg, var(--gold-bright), #c19545 76%);
  border-color: rgba(244, 222, 159, 0.58);
  box-shadow: 0 13px 32px rgba(184, 132, 47, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 17px 38px rgba(216, 184, 109, 0.3);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(216, 184, 109, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(216, 184, 109, 0.55);
  background: rgba(216, 184, 109, 0.06);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.26);
}

.nav-court {
  min-height: 44px;
  padding-inline: 0.95rem;
  font-size: 0.66rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  padding: clamp(4.4rem, 8vw, 7.4rem) 0 clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 184, 109, 0.45), transparent);
}

.eyebrow {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero h1,
.section-heading h2,
.about-copy h2,
.court-copy h2,
.support-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7.4vw, 7.1rem);
  line-height: 0.91;
  text-shadow: 0 18px 60px rgba(125, 54, 196, 0.26);
}

.hero h1 > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.11em;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 60ch;
  margin: 1.65rem 0 0;
  color: #c9bdd6;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.76;
}

.live-callout {
  width: fit-content;
  max-width: 100%;
  min-height: 58px;
  margin-top: 1.65rem;
  padding: 0.66rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(216, 184, 109, 0.17);
  border-radius: 5px;
  background: rgba(5, 2, 9, 0.45);
}

.live-callout > div {
  min-width: 0;
  display: grid;
}

.live-callout strong {
  color: var(--ivory);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.live-callout div span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.71rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-orb {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 184, 109, 0.08), 0 0 15px rgba(216, 184, 109, 0.35);
}

.live-callout[data-state="live"] {
  border-color: rgba(240, 67, 97, 0.4);
  background: rgba(82, 13, 31, 0.22);
}

.live-callout[data-state="live"] .live-orb {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 67, 97, 0.1), 0 0 18px rgba(240, 67, 97, 0.72);
  animation: livePulse 1.9s ease-in-out infinite;
}

.live-callout[data-state="offline"] .live-orb {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(155, 92, 255, 0.08), 0 0 15px rgba(155, 92, 255, 0.42);
}

.live-callout[data-state="error"] .live-orb {
  background: var(--faint);
  box-shadow: 0 0 0 5px rgba(135, 123, 148, 0.08);
}

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

.hero-facts {
  margin: 2.25rem 0 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid rgba(216, 184, 109, 0.14);
}

.hero-facts div {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.hero-facts dt {
  color: var(--faint);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  overflow: hidden;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-art {
  position: relative;
  width: min(100%, 530px);
  min-height: 600px;
  justify-self: end;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 14% 10% 12%;
  z-index: -3;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 67, 97, 0.18), transparent 18%),
    radial-gradient(circle, rgba(115, 50, 179, 0.4), rgba(18, 7, 27, 0.12) 58%, transparent 72%);
  filter: blur(3px);
  box-shadow: 0 0 100px rgba(115, 50, 179, 0.22);
}

.sigil-card {
  position: relative;
  width: 86%;
  padding: 1.4rem;
  display: grid;
  place-items: center;
}

.sigil-card::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 8%;
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 184, 109, 0.38), transparent);
}

.cheshyre-sigil {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.12) brightness(1.08) drop-shadow(0 24px 34px rgba(0, 0, 0, 0.4));
  animation: sigilFloat 6s ease-in-out infinite;
}

.sigil-halo {
  position: absolute;
  z-index: -2;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 184, 109, 0.23);
  border-radius: 50%;
}

.sigil-halo::before,
.sigil-halo::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: #13091b;
  transform: rotate(45deg);
}

.sigil-halo::before {
  top: 13%;
  left: 11%;
}

.sigil-halo::after {
  right: 7%;
  bottom: 18%;
}

.halo-outer {
  width: 100%;
  animation: orbitSpin 38s linear infinite;
}

.halo-inner {
  width: 76%;
  border-style: dashed;
  border-color: rgba(161, 94, 222, 0.28);
  animation: orbitSpin 27s linear infinite reverse;
}

.sigil-note {
  position: absolute;
  z-index: 4;
  max-width: 210px;
  padding: 0.65rem 0.78rem;
  display: grid;
  border: 1px solid rgba(216, 184, 109, 0.2);
  border-radius: 4px;
  background: rgba(8, 4, 13, 0.86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sigil-note span {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sigil-note strong {
  overflow: hidden;
  margin-top: 0.15rem;
  color: var(--ivory);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sigil-note-top {
  top: 15%;
  right: -4%;
}

.sigil-note-bottom {
  bottom: 11%;
  left: -5%;
}

.watch-section,
.about-section,
.schedule-section,
.connect-section,
.support-section {
  scroll-margin-top: 7.5rem;
}

.watch-section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.section-heading h2,
.about-copy h2,
.court-copy h2,
.support-copy h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
  line-height: 1.05;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 2rem;
}

.section-heading-split > p {
  max-width: 55ch;
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.stream-surface {
  position: relative;
  min-height: 430px;
  margin-top: 2.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.026), transparent 40%),
    rgba(8, 4, 13, 0.82);
  box-shadow: var(--shadow);
}

.stream-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 184, 109, 0.65), transparent);
  pointer-events: none;
}

.stream-loading {
  min-height: 430px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  color: var(--muted);
}

.stream-loading p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loading-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 184, 109, 0.16);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: orbitSpin 1s linear infinite;
}

.live-player {
  padding: clamp(0.8rem, 2vw, 1.2rem);
}

.player-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 109, 0.18);
  border-radius: 5px;
  background: #050208;
}

.player-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.player-details {
  padding: 1.05rem 0.2rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.player-details > div {
  min-width: 0;
}

.player-details h3,
.offline-copy h3,
.goals-heading h3,
.content-card h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
}

.player-details h3 {
  overflow: hidden;
  margin-top: 0.28rem;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-details p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.state-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ff8ca0;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.state-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(240, 67, 97, 0.8);
}

.state-label-offline {
  color: var(--gold);
}

.offline-card {
  min-height: 430px;
  padding: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 83% 45%, rgba(115, 50, 179, 0.19), transparent 22rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.015), transparent);
}

.offline-copy h3 {
  max-width: 12ch;
  margin-top: 0.65rem;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.offline-copy > p {
  max-width: 56ch;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration-color: rgba(216, 184, 109, 0.5);
  text-underline-offset: 0.4rem;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.countdown-card {
  min-height: 210px;
  padding: clamp(1.3rem, 3vw, 2rem);
  display: grid;
  place-content: center;
  border: 1px solid rgba(216, 184, 109, 0.22);
  border-radius: 6px;
  background: rgba(5, 2, 9, 0.58);
  text-align: center;
}

.countdown-card > span,
.countdown-card small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.countdown-card strong {
  margin: 0.65rem 0 0.35rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.countdown-card time {
  color: var(--ivory);
  font-size: 0.8rem;
}

.countdown-card small {
  margin-top: 0.3rem;
  color: var(--faint);
  font-size: 0.56rem;
}

.community-goals {
  margin-top: 1rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(216, 184, 109, 0.15);
  border-radius: 7px;
  background: rgba(10, 5, 16, 0.66);
}

.goals-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.goals-heading h3 {
  margin-top: 0.15rem;
  font-size: 1.2rem;
}

.goals-heading > span {
  color: var(--faint);
  font-size: 0.65rem;
}

.mini-kicker {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.goal-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.goal-item {
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.goal-item-head,
.goal-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.goal-item-head strong {
  overflow: hidden;
  color: var(--ivory);
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.goal-item-head span,
.goal-item-meta {
  color: var(--muted);
  font-size: 0.63rem;
}

.goal-track {
  height: 7px;
  margin: 0.65rem 0 0.48rem;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 109, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
}

.goal-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  box-shadow: 0 0 15px rgba(155, 92, 255, 0.4);
  transition: width 400ms ease;
}

.about-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(216, 184, 109, 0.12);
}

.about-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
}

.about-copy .text-link {
  margin-top: 0.5rem;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.content-card {
  position: relative;
  min-height: 230px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 109, 0.14);
  border-radius: 6px;
  color: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    rgba(13, 7, 20, 0.76);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.content-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-top: 1px solid rgba(216, 184, 109, 0.32);
  border-right: 1px solid rgba(216, 184, 109, 0.32);
}

.content-card:hover,
.content-card:focus-visible {
  border-color: rgba(216, 184, 109, 0.36);
  background-color: rgba(31, 13, 43, 0.72);
  transform: translateY(-3px);
}

.content-card-featured {
  background:
    radial-gradient(circle at 85% 15%, rgba(240, 67, 97, 0.1), transparent 10rem),
    linear-gradient(145deg, rgba(102, 43, 157, 0.15), transparent),
    rgba(13, 7, 20, 0.8);
}

.card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(216, 184, 109, 0.28);
  font-family: var(--display);
  font-size: 0.65rem;
}

.content-card h3 {
  margin-top: 2.5rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.content-card p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-arrow {
  position: absolute;
  right: 1.15rem;
  bottom: 1rem;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.content-card-link:hover .card-arrow,
.content-card-link:focus-visible .card-arrow {
  transform: translate(3px, -3px);
}

.schedule-section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  border-top: 1px solid rgba(216, 184, 109, 0.12);
}

.section-heading-centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered > p:last-child {
  max-width: 60ch;
  margin: 1rem auto 0;
  color: var(--muted);
}

.schedule-grid {
  max-width: 960px;
  margin: 2.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.schedule-card {
  min-height: 250px;
  padding: 1.5rem;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(216, 184, 109, 0.16);
  border-radius: 6px;
  background: rgba(13, 7, 20, 0.74);
  text-align: center;
}

.schedule-card-featured {
  border-color: rgba(216, 184, 109, 0.38);
  background:
    radial-gradient(circle at 50% 110%, rgba(138, 67, 199, 0.24), transparent 12rem),
    rgba(17, 8, 25, 0.84);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(-8px);
}

.schedule-day {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-card > strong {
  margin-top: 0.35rem;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.schedule-card > small {
  color: var(--faint);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-local {
  min-height: 1.4em;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(216, 184, 109, 0.12);
  color: var(--muted);
  font-size: 0.68rem;
}

.court-invite {
  position: relative;
  margin-block: clamp(2rem, 5vw, 4rem) clamp(6rem, 11vw, 10rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(216, 184, 109, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(105, 43, 159, 0.19), transparent 48%),
    radial-gradient(circle at 14% 50%, rgba(240, 67, 97, 0.11), transparent 20rem),
    rgba(11, 5, 17, 0.88);
  box-shadow: var(--shadow);
}

.court-invite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.court-invite::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -12rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(216, 184, 109, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4rem rgba(216, 184, 109, 0.015), inset 0 0 0 8rem rgba(216, 184, 109, 0.015);
}

.court-sigil {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.court-sigil::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(216, 184, 109, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 49, 172, 0.3), transparent 68%);
}

.court-sigil img {
  width: min(100%, 320px);
  filter: saturate(1.12) brightness(1.08) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.38));
}

.court-copy {
  position: relative;
  z-index: 1;
}

.court-copy > p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--muted);
}

.court-features {
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  list-style: none;
}

.court-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #d8ccdf;
  font-size: 0.72rem;
  font-weight: 700;
}

.court-features span {
  color: var(--gold);
}

.connect-section {
  padding: 0 0 clamp(6rem, 11vw, 9rem);
}

.social-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.social-card {
  --social: 216, 184, 109;
  min-width: 0;
  min-height: 112px;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(var(--social), 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(var(--social), 0.055), transparent 58%),
    rgba(12, 6, 18, 0.76);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.social-twitch { --social: 169, 112, 255; }
.social-youtube { --social: 255, 76, 90; }
.social-instagram { --social: 225, 101, 169; }
.social-tiktok { --social: 87, 217, 239; }

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(var(--social), 0.52);
  background-color: rgba(26, 12, 36, 0.86);
  transform: translateY(-3px);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--social), 0.3);
  border-radius: 50%;
  color: rgb(var(--social));
  font-family: var(--display);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.social-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
}

.social-card strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 0.78rem;
}

.social-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-card > i {
  color: rgb(var(--social));
  font-style: normal;
  transition: transform 160ms ease;
}

.social-card:hover > i,
.social-card:focus-visible > i {
  transform: translate(3px, -3px);
}

.support-section {
  position: relative;
  margin-bottom: clamp(5rem, 10vw, 8rem);
  padding: clamp(1.7rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(216, 184, 109, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(128, 58, 187, 0.16), transparent 20rem),
    rgba(12, 6, 18, 0.78);
}

.support-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
}

.support-copy > small {
  max-width: 64ch;
  display: block;
  color: var(--faint);
  font-size: 0.64rem;
  line-height: 1.55;
}

.support-links {
  display: grid;
  gap: 0.72rem;
}

.support-card {
  --support: 216, 184, 109;
  min-height: 82px;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(var(--support), 0.22);
  border-radius: 5px;
  background: rgba(var(--support), 0.035);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.support-cashapp { --support: 72, 215, 111; }
.support-venmo { --support: 70, 146, 230; }

.support-card:hover,
.support-card:focus-visible {
  border-color: rgba(var(--support), 0.62);
  background-color: rgba(var(--support), 0.07);
  transform: translateY(-2px);
}

.support-card > span:first-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--support), 0.35);
  border-radius: 50%;
  color: rgb(var(--support));
  font-family: var(--display);
  font-weight: 900;
}

.support-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
}

.support-card strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 0.8rem;
}

.support-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.support-card i {
  color: rgb(var(--support));
  font-style: normal;
  transition: transform 160ms ease;
}

.support-card:hover i,
.support-card:focus-visible i {
  transform: translate(3px, -3px);
}

.site-footer {
  padding: 2rem 0 2.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(216, 184, 109, 0.15);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.footer-brand img {
  width: 38px;
  height: 40px;
  object-fit: cover;
  object-position: 50% 10%;
  filter: drop-shadow(0 0 9px rgba(240, 67, 97, 0.22));
}

.footer-brand > span {
  display: grid;
}

.footer-brand strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 0.74rem;
}

.footer-brand small,
.site-footer > small {
  color: var(--faint);
  font-size: 0.62rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1rem;
}

.site-footer nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  text-underline-offset: 0.25rem;
}

.site-footer > small {
  grid-column: 1 / -1;
  text-align: center;
}

.noscript-note {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  text-align: center;
}

.noscript-note a {
  color: var(--gold-bright);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50% { opacity: 0.62; transform: scale(1.05); }
}

@keyframes starDrift {
  to { background-position: 320px 190px; }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

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

@keyframes livePulse {
  0%, 100% { transform: scale(0.92); opacity: 0.84; }
  50% { transform: scale(1.12); opacity: 1; }
}

@media (max-width: 1040px) {
  .site-nav {
    grid-template-columns: minmax(170px, 1fr) auto auto;
    gap: 0.75rem;
  }

  .nav-links {
    gap: 0.7rem;
  }

  .nav-links a {
    font-size: 0.65rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 2rem;
  }

  .hero-art {
    min-height: 520px;
  }

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

@media (max-width: 860px) {
  :root {
    --page: min(100% - 2rem, 720px);
  }

  html {
    scroll-padding-top: 6.5rem;
  }

  .topbar {
    padding-top: 0.55rem;
  }

  .site-nav {
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 184, 109, 0.2);
    border-radius: 4px;
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
  }

  .menu-button-lines {
    width: 18px;
    display: grid;
    gap: 4px;
  }

  .menu-button-lines i {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button-lines i:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-lines i:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] .menu-button-lines i:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    padding: 0.7rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    border: 1px solid rgba(216, 184, 109, 0.2);
    border-radius: 7px;
    background: rgba(8, 4, 13, 0.96);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  html:not(.js-ready) .site-nav {
    grid-template-columns: 1fr auto;
  }

  html:not(.js-ready) .menu-button {
    display: none;
  }

  html:not(.js-ready) .nav-links {
    position: static;
    grid-column: 1 / -1;
    padding: 0.55rem 0.15rem 0.1rem;
    display: grid;
    border: 0;
    border-top: 1px solid rgba(216, 184, 109, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links a {
    min-height: 46px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 3px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4.7rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-art {
    width: min(92vw, 520px);
    min-height: 560px;
    justify-self: center;
  }

  .section-heading-split,
  .about-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    align-items: start;
  }

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

  .about-section {
    align-items: start;
  }

  .court-invite {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2rem;
  }

  .support-section {
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(100% - 1.15rem, 620px);
  }

  .site-nav {
    padding-left: 0.55rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-court {
    min-height: 42px;
    padding-inline: 0.72rem;
    font-size: 0.58rem;
  }

  .nav-court span {
    display: none;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

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

  .hero-facts div:last-child {
    grid-column: 1 / -1;
  }

  .hero-art {
    width: min(96vw, 440px);
    min-height: 480px;
  }

  .sigil-note-top {
    right: 0;
  }

  .sigil-note-bottom {
    left: 0;
  }

  .stream-surface,
  .stream-loading,
  .offline-card {
    min-height: 390px;
  }

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

  .player-details h3 {
    white-space: normal;
  }

  .goal-list,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .content-cards {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: 200px;
  }

  .schedule-card {
    min-height: 210px;
  }

  .schedule-card-featured {
    transform: none;
  }

  .court-invite {
    grid-template-columns: 1fr;
  }

  .court-sigil {
    max-height: 220px;
    overflow: hidden;
  }

  .court-sigil img {
    width: min(65vw, 260px);
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .brand-copy strong {
    max-width: 105px;
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .nav-court {
    max-width: 108px;
    white-space: normal;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .live-callout {
    width: 100%;
  }

  .live-callout div span {
    white-space: normal;
  }

  .hero-art {
    min-height: 410px;
  }

  .sigil-note {
    max-width: 165px;
    padding: 0.5rem 0.62rem;
  }

  .sigil-note strong {
    font-size: 0.62rem;
  }

  .offline-card {
    padding: 1.2rem;
  }

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

  .support-section,
  .court-invite {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready .reveal,
  .js-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .site-nav,
  .stream-surface,
  .content-card,
  .schedule-card,
  .court-invite,
  .social-card,
  .support-card {
    border: 1px solid CanvasText;
  }

  .live-orb,
  .state-label i {
    background: CanvasText;
  }
}
