:root {
  color-scheme: dark;
  --black: #050207;
  --ink: #0a060d;
  --panel: #100a14;
  --white: #fff8fd;
  --muted: #b8aeba;
  --pink: #f43bb5;
  --pink-hot: #ff65cf;
  --blue: #46d6ff;
  --kick: #53fc18;
  --line: rgba(255, 255, 255, 0.13);
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 59, 181, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 38%, rgba(70, 214, 255, 0.09), transparent 32rem),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px);
  background-size: 100% 4px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(92rem, calc(100% - 3rem));
  min-height: 5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  border-radius: 50%;
}

.brand span,
nav a,
.eyebrow,
.card-kicker,
.player-chrome,
.fallback-copy {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

nav {
  display: flex;
  gap: 1.4rem;
}

nav a {
  padding: 0.75rem 0;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

main {
  width: min(92rem, calc(100% - 3rem));
  margin: 0 auto;
}

.live-stage {
  min-height: calc(100svh - 5rem);
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 8rem);
}

.stage-intro {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(20rem, 1.18fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--kick);
  box-shadow: 0 0 1rem rgba(83, 252, 24, 0.8);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(3.75rem, 8.4vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.lede {
  max-width: 33rem;
  margin: 0 0 0.2rem auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 23rem);
  gap: 1rem;
}

.player-frame {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid rgba(70, 214, 255, 0.3);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 0 0 1px rgba(244, 59, 181, 0.1), 0 2rem 7rem rgba(0, 0, 0, 0.48);
}

.player-frame::before,
.player-frame::after {
  position: absolute;
  z-index: 3;
  height: 3px;
  content: "";
  pointer-events: none;
}

.player-frame::before {
  top: 0;
  right: 45%;
  left: 0;
  background: var(--pink);
  box-shadow: 0 0 1rem var(--pink);
}

.player-frame::after {
  top: 0;
  right: 0;
  left: 55%;
  background: var(--blue);
  box-shadow: 0 0 1rem var(--blue);
}

.player-chrome {
  position: absolute;
  inset: 1.1rem 1.2rem auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.signal {
  color: var(--kick);
}

.player-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(125deg, transparent, rgba(244, 59, 181, 0.08) 45%, rgba(70, 214, 255, 0.05)),
    #020103;
}

.player-fallback > img {
  width: min(55%, 30rem);
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.08);
}

.fallback-copy {
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

.fallback-copy p {
  margin: 0;
}

.pulse {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 0.8rem var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
}

.kick-player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.player-frame.player-connected {
  min-height: 0;
  aspect-ratio: 16 / 9;
  align-self: start;
}

.player-connected::before,
.player-connected::after {
  display: none;
}

.watch-card {
  display: flex;
  min-height: 28rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(83, 252, 24, 0.17), transparent 9rem),
    var(--panel);
}

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

.watch-card h2,
.connection h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.watch-card p:not(.card-kicker) {
  max-width: 27rem;
  color: var(--muted);
}

.kick-button,
.email-link {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.kick-button {
  padding: 0.85rem 1.25rem;
  background: var(--kick);
  color: #071102;
  box-shadow: 0 0.7rem 2rem rgba(83, 252, 24, 0.12);
}

.kick-button:hover,
.kick-button:focus-visible {
  background: #75ff44;
  transform: translateY(-2px);
}

.kick-button svg,
.email-link svg,
.seat-map-contact svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.seat-map {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.seat-map::before {
  position: absolute;
  top: 4rem;
  right: -18rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(70, 214, 255, 0.08);
  content: "";
  filter: blur(7rem);
  pointer-events: none;
}

.seat-map-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 1.08fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.seat-map-intro h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.8vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.seat-map-copy > p {
  max-width: 35rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.seat-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seat-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0.7rem currentColor;
}

.legend-dot-pink {
  color: var(--pink);
}

.legend-dot-blue {
  color: var(--blue);
}

.legend-dot-amber {
  color: #ff7a1a;
}

.seat-map-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  gap: 1rem;
}

.seat-map-stage,
.seat-map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 4, 11, 0.94);
}

.seat-map-stage {
  min-width: 0;
  overflow: hidden;
}

.seat-map-viewer {
  position: relative;
  min-height: clamp(31rem, 58vw, 48rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 86%, rgba(244, 59, 181, 0.16), transparent 32%),
    radial-gradient(circle at 78% 45%, rgba(70, 214, 255, 0.12), transparent 30%),
    #020104;
  cursor: grab;
  outline: none;
  isolation: isolate;
}

.seat-map-viewer:active {
  cursor: grabbing;
}

.seat-map-viewer:focus-visible {
  box-shadow: inset 0 0 0 2px var(--blue);
}

.seat-map-viewer canvas,
.seat-map-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seat-map-viewer canvas {
  z-index: 2;
  display: block;
  touch-action: none;
}

.seat-map-poster {
  z-index: 1;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 500ms ease;
}

.seat-map-viewer.is-ready .seat-map-poster {
  opacity: 0;
  pointer-events: none;
}

.seat-map-loader {
  position: absolute;
  z-index: 4;
  top: 1.1rem;
  left: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 1, 5, 0.78);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(0.7rem);
}

.seat-map-loader span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0.85rem var(--blue);
  animation: pulse 1.4s ease-in-out infinite;
}

.seat-map-loader p {
  margin: 0;
}

.seat-map-viewer.is-ready .seat-map-loader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.seat-map-viewer.has-error .seat-map-loader span {
  background: var(--pink);
  box-shadow: 0 0 0.85rem var(--pink);
  animation: none;
}

.seat-map-hint {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(3, 1, 5, 0.64);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  backdrop-filter: blur(0.6rem);
}

.seat-map-hint span {
  margin: 0 0.35rem;
  color: var(--pink);
}

.seat-map-toolbar {
  display: flex;
  min-height: 4.3rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
}

.seat-map-toolbar button,
.zone-list button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.seat-map-toolbar button {
  min-height: 2.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.seat-map-toolbar button:hover,
.seat-map-toolbar button:focus-visible,
.seat-map-toolbar button[aria-pressed="true"] {
  border-color: rgba(70, 214, 255, 0.55);
  background: rgba(70, 214, 255, 0.10);
  color: var(--white);
}

.seat-map-panel {
  display: flex;
  min-width: 0;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.zone-readout {
  min-height: 10rem;
}

.zone-readout h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.zone-readout > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.zone-list-label {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.42rem;
}

.zone-list button {
  min-width: 0;
  min-height: 2.25rem;
  padding: 0.35rem 0.25rem;
  border-radius: 0.55rem;
  font-size: 0.72rem;
}

.zone-list button:hover,
.zone-list button:focus-visible,
.zone-list button.is-selected {
  border-color: rgba(244, 59, 181, 0.72);
  background: rgba(244, 59, 181, 0.13);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(244, 59, 181, 0.58);
}

.seat-map-contact {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(244, 59, 181, 0.34);
  border-radius: 999px;
  background: rgba(244, 59, 181, 0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.seat-map-contact:hover,
.seat-map-contact:focus-visible {
  border-color: var(--pink);
  background: rgba(244, 59, 181, 0.16);
}

.seat-map-noscript {
  color: var(--muted);
}

.connection {
  display: grid;
  grid-template-columns: auto minmax(18rem, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.connection-mark {
  display: grid;
  width: clamp(4.7rem, 8vw, 7.2rem);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink-hot);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 900;
  box-shadow: inset 0 0 1.5rem rgba(244, 59, 181, 0.18), 0 0 1.5rem rgba(244, 59, 181, 0.18);
}

.connection .eyebrow {
  margin-bottom: 0.8rem;
}

.connection h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

.email-link {
  min-width: min(100%, 20rem);
  padding: 0.85rem 0 0.85rem 1rem;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  color: var(--white);
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--blue);
}

footer {
  display: grid;
  width: min(92rem, calc(100% - 3rem));
  min-height: 6.5rem;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

footer img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 50%;
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 58rem) {
  .stage-intro,
  .broadcast-grid,
  .seat-map-intro,
  .seat-map-shell {
    grid-template-columns: 1fr;
  }

  .lede {
    margin-left: 0;
  }

  .player-frame,
  .kick-player {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .watch-card {
    min-height: 20rem;
  }

  .seat-map-viewer {
    min-height: clamp(27rem, 80vw, 38rem);
  }

  .seat-map-panel {
    min-height: 22rem;
  }

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

  .email-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  .site-header,
  main,
  footer {
    width: min(100% - 1.5rem, 92rem);
  }

  .site-header {
    min-height: 4.5rem;
  }

  .brand span {
    display: none;
  }

  nav {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .live-stage {
    padding-top: 3rem;
  }

  .stage-intro {
    gap: 1.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5rem);
  }

  .player-chrome {
    font-size: 0.66rem;
  }

  .player-fallback > img {
    width: 70%;
  }

  .watch-card {
    min-height: 18rem;
  }

  .seat-map {
    padding: 4.5rem 0;
  }

  .seat-map-intro h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .seat-map-viewer {
    min-height: 27rem;
  }

  .seat-map-toolbar {
    overflow-x: auto;
  }

  .seat-map-toolbar button {
    flex: 0 0 auto;
  }

  .seat-map-hint {
    display: none;
  }

  .connection {
    gap: 1.2rem;
  }

  .connection-mark {
    width: 4.5rem;
  }

  footer {
    grid-template-columns: auto 1fr;
    padding: 1.25rem 0;
  }

  footer p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

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