:root {
  --ink: #050506;
  --black: #000;
  --red: #ef1238;
  --red-hot: #ff3854;
  --red-dark: #5d0717;
  --bone: #f1e8dc;
  --muted: #958a84;
  --line: rgba(255, 39, 72, 0.28);
  --pointer-x: 0;
  --pointer-y: 0;
  --pulse: 0;
  --energy: 0;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--black);
  color: var(--bone);
  font-family: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(105, 0, 22, 0.22), transparent 34rem),
    linear-gradient(180deg, #060607 0%, #020203 54%, #080205 100%);
  isolation: isolate;
}

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

button {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--red-hot);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: var(--black);
  background: var(--bone);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.world,
.world > * {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#signal-canvas {
  z-index: -7;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  image-rendering: pixelated;
}

.cathedral-grid {
  z-index: -6;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(229, 12, 49, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 12, 49, 0.055) 1px, transparent 1px);
  background-position:
    calc(50% + var(--pointer-x) * -0.35rem)
    calc(50% + var(--pointer-y) * -0.25rem);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 75%, transparent 100%);
}

.cathedral-grid::before,
.cathedral-grid::after {
  content: "";
  position: absolute;
  top: -12vh;
  bottom: 0;
  width: 34vw;
  border: 1px solid rgba(232, 13, 49, 0.08);
  background:
    repeating-linear-gradient(90deg, transparent 0 11%, rgba(255, 23, 62, 0.035) 11% 12%),
    linear-gradient(110deg, transparent 35%, rgba(216, 9, 43, 0.06) 35% 36%, transparent 36%);
  transform: skewY(-12deg);
}

.cathedral-grid::before {
  left: -8vw;
}

.cathedral-grid::after {
  right: -8vw;
  transform: scaleX(-1) skewY(-12deg);
}

.laser {
  z-index: -5;
  top: -30vh;
  left: 50%;
  width: 1px;
  height: 130vh;
  opacity: 0.42;
  background: linear-gradient(to bottom, transparent 4%, var(--red) 44%, rgba(255, 26, 62, 0.08) 100%);
  box-shadow: 0 0 8px rgba(255, 20, 58, 0.8), 0 0 25px rgba(255, 20, 58, 0.35);
  transform-origin: 50% 0;
  animation: laser-sweep 8s cubic-bezier(0.6, 0, 0.4, 1) infinite alternate;
}

.laser-left {
  transform: rotate(25deg);
}

.laser-right {
  animation-delay: -3.6s;
  animation-direction: alternate-reverse;
  transform: rotate(-25deg);
}

.scanlines {
  z-index: 40;
  opacity: 0.16;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.028) 0,
    rgba(255, 255, 255, 0.028) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: soft-light;
}

.noise {
  z-index: 41;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 35;
  background: radial-gradient(circle at 50% 46%, transparent 35%, rgba(0, 0, 0, 0.52) 76%, #000 112%);
}

.topbar,
.footer {
  position: fixed;
  z-index: 50;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1rem, 3.6vw, 3.25rem);
  color: var(--muted);
  font-size: clamp(0.55rem, 1.15vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topbar {
  top: 0;
  padding-top: calc(1rem + var(--safe-top));
  animation: interface-in 700ms steps(7, end) 80ms both;
}

.topbar::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 3.6vw, 3.25rem);
  bottom: -0.72rem;
  left: clamp(1rem, 3.6vw, 3.25rem);
  height: 1px;
  opacity: 0.55;
  background: linear-gradient(90deg, var(--line), transparent 37%, transparent 63%, var(--line));
}

.signal-id,
.frequency {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.status-light {
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--red-hot);
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(239, 18, 56, 0.08), 0 0 12px var(--red);
  animation: status-blink 2.1s steps(2, end) infinite;
}

.frequency span {
  color: #645b58;
  font-size: 0.78em;
}

.stage {
  position: relative;
  z-index: 5;
  display: grid;
  width: 100%;
  min-height: 100svh;
  place-items: center;
  padding: clamp(4.3rem, 8vh, 6.5rem) 1rem clamp(7.1rem, 13vh, 9rem);
}

.hero {
  position: relative;
  display: flex;
  width: min(100%, 74rem);
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translate3d(
    calc(var(--pointer-x) * 0.3rem),
    calc(var(--pointer-y) * 0.18rem),
    0
  );
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.kicker {
  display: flex;
  margin: 0 0 clamp(0.25rem, 1vh, 0.7rem);
  align-items: center;
  gap: 0.7rem;
  color: #b5aaa5;
  font-size: clamp(0.53rem, 1.1vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  animation: interface-in 760ms steps(7, end) 410ms both;
}

.kicker span {
  color: var(--red);
  font-size: 0.8em;
  text-shadow: 0 0 10px var(--red);
}

.altar {
  position: relative;
  display: grid;
  width: clamp(15.5rem, min(41vw, 42vh), 27rem);
  aspect-ratio: 1;
  place-items: center;
  margin-block: -0.1rem clamp(-2rem, -2.8vh, -0.8rem);
  animation: altar-in 1.1s steps(9, end) 120ms both;
}

.halo {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  opacity: 0.48;
  filter: drop-shadow(0 0 5px rgba(255, 30, 64, 0.4));
  mask-image: radial-gradient(circle, transparent 0 59%, #000 60% 64%, transparent 65%);
}

.halo-outer {
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0 4deg,
    rgba(255, 32, 65, 0.92) 4deg 5deg,
    transparent 5deg 11deg
  );
  animation: rotate-halo 26s linear infinite;
}

.halo-inner {
  inset: 10%;
  opacity: 0.34;
  background: repeating-conic-gradient(
    from 7deg,
    transparent 0 10deg,
    rgba(255, 221, 213, 0.78) 10deg 11deg,
    transparent 11deg 22.5deg
  );
  animation: rotate-halo 18s linear infinite reverse;
}

.orbit {
  position: absolute;
  z-index: 3;
  inset: 1.5%;
  border: 1px solid rgba(255, 30, 64, 0.12);
  border-radius: 50%;
  animation: rotate-halo 11s linear infinite;
}

.orbit i {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 5px;
  height: 5px;
  background: var(--red-hot);
  box-shadow: 0 0 8px var(--red-hot), 0 0 22px var(--red);
  transform: translateY(-50%) rotate(45deg);
}

.orbit-two {
  inset: 14%;
  animation-duration: 7.2s;
  animation-direction: reverse;
}

.orbit-two i {
  top: 12%;
  right: 9%;
  left: auto;
}

.cross-flare {
  position: absolute;
  z-index: 1;
  inset: 8%;
  opacity: calc(0.2 + var(--pulse) * 0.55);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(244, 15, 52, 0.58) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(244, 15, 52, 0.58) 50%, transparent 50.3%);
  filter: blur(1px);
  transform: scale(calc(0.86 + var(--pulse) * 0.3));
  transition: opacity 400ms ease, transform 400ms ease;
}

.sigil {
  position: relative;
  z-index: 4;
  width: 84%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: crosshair;
  mix-blend-mode: screen;
  transform: translateZ(0);
}

.sigil::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14% 12%;
  border-radius: 50%;
  opacity: 0.68;
  background: rgba(116, 0, 23, 0.22);
  filter: blur(28px);
  transform: scale(calc(0.92 + var(--pulse) * 0.3));
}

.sigil img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 5px rgba(250, 25, 60, 0.4))
    drop-shadow(0 0 24px rgba(224, 0, 38, 0.16));
  mix-blend-mode: screen;
  object-fit: contain;
  transform: scale(1.04);
  transition: filter 220ms ease, transform 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.sigil-corners,
.sigil-corners::before,
.sigil-corners::after {
  position: absolute;
  z-index: 3;
  inset: 5%;
  border: solid rgba(255, 41, 72, 0.38);
  pointer-events: none;
}

.sigil-corners {
  border-width: 1px 0 0 1px;
  clip-path: polygon(0 0, 18% 0, 18% 1px, 1px 1px, 1px 18%, 0 18%);
}

.sigil-corners::before,
.sigil-corners::after {
  content: "";
  inset: 0;
}

.sigil-corners::before {
  border-width: 1px 1px 0 0;
  clip-path: polygon(82% 0, 100% 0, 100% 18%, calc(100% - 1px) 18%, calc(100% - 1px) 1px, 82% 1px);
}

.sigil-corners::after {
  border-width: 0 1px 1px 0;
  clip-path: polygon(100% 82%, 100% 100%, 82% 100%, 82% calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 82%);
}

.sigil:hover img {
  filter:
    drop-shadow(0 0 7px rgba(250, 25, 60, 0.5))
    drop-shadow(0 0 28px rgba(224, 0, 38, 0.2))
    saturate(1.18)
    brightness(1.08);
  transform: scale(1.065);
}

.sigil:focus-visible {
  outline: 1px solid var(--bone);
  outline-offset: 0.6rem;
}

.artist-name {
  position: relative;
  z-index: 7;
  display: flex;
  margin: 0;
  align-items: baseline;
  justify-content: center;
  gap: clamp(0.45rem, 1.2vw, 1rem);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(2rem, min(7.8vw, 8.5vh), 5.7rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
  animation: title-in 760ms steps(6, end) 680ms both;
}

.artist-name span {
  position: relative;
  display: inline-block;
}

.artist-name span::before,
.artist-name span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.word-valentine {
  color: var(--bone);
  text-shadow: 0 1px 0 #766b65;
}

.word-saint {
  color: transparent;
  -webkit-text-stroke: 1px var(--red-hot);
  text-shadow: 0 0 18px rgba(239, 18, 56, 0.28);
}

.arrival {
  display: flex;
  margin-top: clamp(0.8rem, 2vh, 1.5rem);
  align-items: center;
  gap: clamp(0.55rem, 1.5vw, 1rem);
  color: var(--red-hot);
  font-size: clamp(0.78rem, 2.2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: clamp(0.2em, 0.55vw, 0.42em);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 13px rgba(255, 31, 68, 0.62);
  animation: interface-in 620ms steps(6, end) 1.02s both;
}

.arrival-bracket {
  color: rgba(255, 53, 84, 0.55);
  font-weight: 400;
  animation: bracket-pulse 1.8s steps(2, end) infinite;
}

.arrival-text::after {
  content: "_";
  display: inline-block;
  margin-left: 0.12em;
  animation: cursor-blink 0.92s steps(2, end) infinite;
}

.manifesto {
  margin: clamp(0.62rem, 1.4vh, 1rem) 0 0;
  color: #c7bbb4;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.85vw, 1.18rem);
  font-style: italic;
  letter-spacing: 0.035em;
  animation: interface-in 700ms ease-out 1.14s both;
}

.interaction-hint {
  margin: 0.65rem 0 0;
  color: #8c817d;
  font-size: clamp(0.48rem, 0.9vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 300ms ease;
  animation: interface-in 700ms ease-out 1.28s both;
}

.sigil:hover ~ .interaction-hint {
  color: #9f9290;
}

.level-meter {
  position: fixed;
  z-index: 8;
  top: 50%;
  display: flex;
  width: clamp(2rem, 4vw, 3.75rem);
  height: min(32vh, 15rem);
  flex-direction: column-reverse;
  gap: 4px;
  padding: 4px;
  opacity: 0.46;
  transform: translateY(-50%);
}

.level-meter-left {
  left: clamp(0.1rem, 1.3vw, 1rem);
}

.level-meter-right {
  right: clamp(0.1rem, 1.3vw, 1rem);
}

.level-meter span {
  flex: 1;
  border: 1px solid rgba(255, 32, 64, 0.25);
  background: rgba(160, 3, 29, 0.14);
  transform: scaleX(var(--level, 0.38));
  transition: transform 140ms steps(3, end), background 140ms linear;
}

.level-meter span.lit {
  background: rgba(246, 20, 57, 0.86);
  box-shadow: 0 0 8px rgba(244, 19, 56, 0.6);
}

.ticker {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: calc(3.65rem + var(--safe-bottom));
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 28, 64, 0.21);
  border-bottom: 1px solid rgba(255, 28, 64, 0.21);
  background: rgba(7, 1, 3, 0.62);
  color: rgba(203, 190, 182, 0.45);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
  animation: interface-in 720ms steps(6, end) 1.08s both;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.8rem;
  padding-block: 0.55rem;
  animation: ticker-move 26s linear infinite;
}

.ticker-track i {
  color: var(--red);
  font-style: normal;
  text-shadow: 0 0 8px var(--red);
}

.footer {
  bottom: 0;
  min-height: calc(3.65rem + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72));
  animation: interface-in 720ms steps(6, end) 1.16s both;
}

.footer p {
  margin: 0;
  white-space: nowrap;
}

.sound-toggle {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.2rem;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  color: var(--bone);
}

.sound-toggle:focus-visible {
  outline: 1px solid var(--red-hot);
  outline-offset: 0.2rem;
}

.sound-icon {
  display: flex;
  width: 1.1rem;
  height: 0.75rem;
  align-items: flex-end;
  justify-content: space-between;
}

.sound-icon i {
  width: 2px;
  height: 25%;
  background: currentColor;
}

.sound-toggle[aria-pressed="true"] {
  color: var(--red-hot);
  text-shadow: 0 0 10px rgba(239, 18, 56, 0.65);
}

.sound-toggle[aria-pressed="true"] .sound-icon i {
  animation: sound-bar 0.72s steps(4, end) infinite alternate;
}

.sound-toggle[aria-pressed="true"] .sound-icon i:nth-child(2) {
  animation-delay: -0.38s;
}

.sound-toggle[aria-pressed="true"] .sound-icon i:nth-child(3) {
  animation-delay: -0.61s;
}

.sound-toggle[aria-pressed="true"] .sound-icon i:nth-child(4) {
  animation-delay: -0.18s;
}

.flash {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(255, 232, 225, 0.88) 50%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, rgba(255, 30, 66, 0.8) 50%, transparent 50.4%);
  mix-blend-mode: screen;
}

.surge .flash {
  animation: flash-cross 660ms steps(2, end);
}

.surge .sigil img {
  animation: sigil-surge 660ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.surge .halo-outer {
  animation-duration: 1.8s;
}

.surge .halo-inner {
  animation-duration: 1.1s;
}

.surge .interaction-hint {
  color: var(--red-hot);
}

.glitching .artist-name span::before {
  opacity: 0.8;
  color: var(--red);
  transform: translate(-3px, -1px);
  clip-path: inset(15% 0 55% 0);
}

.glitching .artist-name span::after {
  opacity: 0.72;
  color: var(--bone);
  transform: translate(3px, 2px);
  clip-path: inset(63% 0 13% 0);
}

.glitching .hero {
  filter: contrast(1.1);
  transform: translate3d(2px, -1px, 0);
}

.glitching #signal-canvas {
  opacity: 1;
}

.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;
}

@keyframes rotate-halo {
  to { transform: rotate(1turn); }
}

@keyframes altar-in {
  0% {
    opacity: 0;
    filter: brightness(2.2) blur(3px);
    clip-path: inset(49% 0 49% 0);
    transform: scale(0.84);
  }
  38% {
    opacity: 0.72;
    clip-path: inset(22% 0 22% 0);
  }
  72% {
    filter: brightness(1.35) blur(0);
    clip-path: inset(0);
    transform: scale(1.035);
  }
  100% {
    opacity: 1;
    filter: brightness(1) blur(0);
    clip-path: inset(0);
    transform: scale(1);
  }
}

@keyframes title-in {
  0% {
    opacity: 0;
    clip-path: inset(46% 0 46% 0);
    transform: translateY(0.7rem);
  }
  55% {
    opacity: 1;
    clip-path: inset(14% 0 14% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes interface-in {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes laser-sweep {
  0% { transform: rotate(29deg) scaleY(0.96); opacity: 0.18; }
  45% { opacity: 0.5; }
  100% { transform: rotate(-8deg) scaleY(1.08); opacity: 0.26; }
}

@keyframes status-blink {
  0%, 62% { opacity: 1; }
  63%, 76% { opacity: 0.22; }
  77%, 100% { opacity: 1; }
}

@keyframes bracket-pulse {
  0%, 54% { opacity: 0.38; }
  55%, 100% { opacity: 1; }
}

@keyframes cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

@keyframes sound-bar {
  from { height: 22%; }
  to { height: 100%; }
}

@keyframes flash-cross {
  0% { opacity: 0; transform: scale(0.45); }
  12% { opacity: 0.9; }
  30% { opacity: 0.18; transform: scale(1); }
  55% { opacity: 0.4; }
  100% { opacity: 0; transform: scale(1.6); }
}

@keyframes sigil-surge {
  0% { filter: brightness(1); transform: scale(1.04); }
  18% { filter: brightness(1.8) saturate(1.4); transform: scale(1.11); }
  46% { filter: brightness(0.78) saturate(1.6); transform: scale(1.02); }
  100% { filter: brightness(1); transform: scale(1.04); }
}

@media (max-width: 700px) {
  .topbar,
  .footer {
    padding-inline: 1rem;
  }

  .stage {
    padding-top: 4.7rem;
    padding-bottom: 7.6rem;
  }

  .hero {
    transform: none;
  }

  .altar {
    width: clamp(17.5rem, min(88vw, 43vh), 24rem);
    margin-block: -0.3rem -1.15rem;
  }

  .artist-name {
    flex-direction: column;
    align-items: center;
    gap: 0.14em;
    font-size: clamp(2.4rem, 12.5vw, 4.3rem);
    line-height: 0.73;
  }

  .word-saint {
    font-size: 0.78em;
    letter-spacing: 0.05em;
  }

  .level-meter {
    display: none;
  }

  .interaction-hint {
    margin-top: 0.8rem;
  }

  .cathedral-grid {
    background-size: 31px 31px;
  }

  .footer p {
    text-align: right;
  }

  .ticker-track {
    gap: 2rem;
  }
}

@media (max-width: 360px) {
  .footer {
    font-size: 0.48rem;
    letter-spacing: 0.075em;
  }

  .sound-toggle {
    flex: 0 0 auto;
    gap: 0.4rem;
    white-space: nowrap;
  }

  .sound-icon {
    width: 0.9rem;
  }

  .footer p {
    font-size: 0.44rem;
    letter-spacing: 0.055em;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .stage {
    min-height: auto;
    place-items: start center;
    padding-top: 4.2rem;
    padding-bottom: 1.7rem;
  }

  .ticker {
    display: none;
  }

  .footer {
    position: relative;
    left: auto;
    min-height: 3.25rem;
  }

  .dj-deck {
    width: min(95vw, 21.5rem);
  }

  .artist-name {
    margin-top: 0.65rem;
  }

  .arrival-luxe {
    margin-top: 0.58rem;
  }
}

@media (max-height: 720px) and (min-width: 701px) {
  .stage {
    padding-top: 3.8rem;
    padding-bottom: 6.2rem;
  }

  .altar {
    width: min(39vw, 42vh);
    min-width: 14.5rem;
    margin-bottom: -1.3rem;
  }

  .manifesto {
    display: none;
  }

  .interaction-hint {
    margin-top: 0.5rem;
  }

  .ticker {
    bottom: 3.25rem;
  }

  .footer {
    min-height: 3.25rem;
  }
}

@media (max-height: 640px) {
  .kicker,
  .interaction-hint {
    display: none;
  }

  .altar {
    width: min(80vw, 40vh);
    min-width: 13.25rem;
  }

  .arrival {
    margin-top: 0.65rem;
  }
}

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

  .laser {
    display: none;
  }

  .halo-outer {
    transform: rotate(8deg);
  }

  .halo-inner {
    transform: rotate(-8deg);
  }

  .ticker-track {
    transform: none;
  }
}

@media (forced-colors: active) {
  .world {
    display: none;
  }

  .word-saint {
    color: CanvasText;
    -webkit-text-stroke: 0;
  }

  .sigil {
    border: 1px solid CanvasText;
  }
}

/* Interactive DJ deck */

.dj-deck {
  position: relative;
  z-index: 6;
  width: min(92vw, 58rem);
  padding: 0.62rem 0.7rem 0.72rem;
  border: 1px solid rgba(255, 42, 73, 0.31);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 24%),
    linear-gradient(180deg, rgba(18, 3, 7, 0.88), rgba(3, 1, 2, 0.9));
  box-shadow:
    0 1.4rem 5rem rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.018) inset,
    0 0 4rem rgba(184, 0, 34, 0.1);
  clip-path: polygon(
    12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px),
    0 12px
  );
  isolation: isolate;
  animation: altar-in 1.1s steps(9, end) 120ms both;
}

.dj-deck::before,
.dj-deck::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.dj-deck::before {
  inset: 0;
  opacity: 0.4;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 8.2%,
      rgba(255, 34, 68, 0.045) 8.2% 8.35%
    ),
    linear-gradient(90deg, transparent, rgba(255, 34, 68, 0.055), transparent);
}

.dj-deck::after {
  top: 0;
  right: 14%;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
  box-shadow: 0 0 13px rgba(255, 38, 72, 0.48);
}

.deck-rail {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  padding: 0.05rem 0.3rem 0.55rem;
  color: #625855;
  font-size: clamp(0.42rem, 0.72vw, 0.54rem);
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.deck-rail span:nth-child(2) {
  text-align: center;
}

.deck-rail span:last-child {
  text-align: right;
}

.deck-status {
  color: #9a8c87;
  text-shadow: 0 0 12px rgba(255, 31, 67, 0);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.is-playing .deck-status {
  color: var(--red-hot);
  text-shadow: 0 0 12px rgba(255, 31, 67, 0.58);
}

.deck-face {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 1.34fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.4rem, 1.1vw, 0.9rem);
}

.deck-bay {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  padding: 7.5%;
  overflow: hidden;
  border: 1px solid rgba(255, 39, 72, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.026), transparent 42%),
    repeating-linear-gradient(
      0deg,
      transparent 0 9px,
      rgba(255, 28, 63, 0.018) 9px 10px
    ),
    rgba(4, 1, 2, 0.58);
  box-shadow:
    inset 0 0 35px rgba(110, 0, 20, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.012);
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
}

.deck-bay::before,
.deck-bay::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(255, 44, 75, 0.5);
}

.deck-bay::before {
  top: 0.55rem;
  left: 0.55rem;
}

.deck-bay::after {
  right: 0.55rem;
  bottom: 0.55rem;
}

.platter {
  display: grid;
  width: 88%;
  aspect-ratio: 1;
  place-items: center;
  padding: 5%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      rgba(255, 46, 77, 0.35) 0 1deg,
      transparent 1deg 9deg
    );
  box-shadow:
    0 0 0 1px rgba(255, 42, 72, 0.3),
    0 0 28px rgba(239, 18, 56, 0.11),
    inset 0 0 20px rgba(255, 28, 65, 0.08);
}

.record {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 55, 83, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      var(--bone) 0 1.2%,
      #670a1a 1.4% 7%,
      #060203 7.2% 14%,
      transparent 14.2%
    ),
    repeating-radial-gradient(circle, #120407 0 3px, #020203 4px 6px);
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.9),
    0 0 22px rgba(0, 0, 0, 0.68);
  animation: platter-spin 4.571s linear infinite;
  animation-play-state: paused;
}

.record::before,
.record::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 38, 69, 0.08);
  border-radius: 50%;
}

.record::after {
  inset: 25%;
  border-color: rgba(244, 232, 220, 0.06);
}

.deck-bay-s .record {
  animation-delay: -2.2855s;
}

.is-playing .record {
  animation-play-state: running;
}

.disc-letter {
  position: relative;
  z-index: 2;
  color: var(--red-hot);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Iowan Old Style", Georgia, serif;
  font-size: clamp(3.6rem, 7.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.12em;
  line-height: 1;
  text-indent: -0.06em;
  text-shadow:
    0 0 8px rgba(239, 18, 56, 0.55),
    0 0 24px rgba(239, 18, 56, 0.22);
}

.spindle {
  position: absolute;
  z-index: 3;
  width: 0.42rem;
  aspect-ratio: 1;
  border: 1px solid #21191a;
  border-radius: 50%;
  background: var(--bone);
  box-shadow: 0 0 9px var(--red-hot);
}

.tonearm {
  position: absolute;
  z-index: 4;
  top: 13%;
  right: 11%;
  width: 3px;
  height: 47%;
  border-radius: 2px;
  background: linear-gradient(#d4c8c0, #5a4d4a 74%, #ef1238 75%);
  box-shadow: 0 0 7px rgba(255, 31, 67, 0.2);
  transform: rotate(18deg);
  transform-origin: 50% 8%;
}

.deck-bay-s .tonearm {
  right: auto;
  left: 11%;
  transform: rotate(-18deg);
}

.tonearm::before {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 50%;
  width: 0.78rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 47, 78, 0.5);
  border-radius: 50%;
  background: #0a0305;
  transform: translateX(-50%);
}

.tonearm b {
  position: absolute;
  right: -0.18rem;
  bottom: -0.25rem;
  width: 0.42rem;
  height: 0.78rem;
  background: var(--red);
  box-shadow: 0 0 8px rgba(239, 18, 56, 0.5);
  transform: rotate(-9deg);
}

.deck-caption {
  position: absolute;
  right: 0.6rem;
  bottom: 0.45rem;
  color: #6f625e;
  font-size: clamp(0.4rem, 0.68vw, 0.52rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.deck-bay-s .deck-caption {
  right: auto;
  left: 0.6rem;
}

.deck-core {
  position: relative;
  z-index: 5;
  display: grid;
  width: 100%;
  place-items: center;
  isolation: isolate;
}

.logo-control {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 39, 72, 0.34);
  outline: 0;
  background: #010102;
  cursor: pointer;
  clip-path: polygon(
    8px 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    8px 100%,
    0 calc(100% - 8px),
    0 8px
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.018) inset,
    0 0 2.4rem rgba(196, 0, 37, 0.13);
  transform: translateZ(0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.logo-control::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 44%, rgba(255, 24, 62, 0.05) 68%, transparent 88%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 25%);
  opacity: calc(0.45 + var(--energy) * 0.45);
}

.logo-control img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 5px rgba(250, 25, 60, 0.38))
    drop-shadow(0 0 22px rgba(224, 0, 38, 0.15));
  mix-blend-mode: screen;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.transport-frame,
.transport-frame::before,
.transport-frame::after {
  position: absolute;
  z-index: 4;
  inset: 0.4rem;
  pointer-events: none;
}

.transport-frame {
  border: solid rgba(255, 44, 76, 0.36);
  border-width: 1px 0 0 1px;
  clip-path: polygon(0 0, 18% 0, 18% 1px, 1px 1px, 1px 18%, 0 18%);
}

.transport-frame::before,
.transport-frame::after {
  content: "";
  inset: 0;
}

.transport-frame::before {
  border: solid rgba(255, 44, 76, 0.36);
  border-width: 1px 1px 0 0;
  clip-path: polygon(82% 0, 100% 0, 100% 18%, calc(100% - 1px) 18%, calc(100% - 1px) 1px, 82% 1px);
}

.transport-frame::after {
  border: solid rgba(255, 44, 76, 0.36);
  border-width: 0 1px 1px 0;
  clip-path: polygon(100% 82%, 100% 100%, 82% 100%, 82% calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 82%);
}

.play-badge {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(2.8rem, 5.2vw, 4.15rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 237, 231, 0.72);
  border-radius: 50%;
  background: rgba(2, 1, 2, 0.82);
  box-shadow:
    0 0 0 5px rgba(239, 18, 56, 0.09),
    0 0 22px rgba(239, 18, 56, 0.44);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 0.23rem;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.78rem solid var(--bone);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.pause-bars {
  position: relative;
  display: none;
  width: 0.85rem;
  height: 1.05rem;
  border-right: 0.26rem solid var(--bone);
  border-left: 0.26rem solid var(--bone);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.is-playing .play-triangle {
  display: none;
}

.is-playing .pause-bars {
  display: block;
}

.logo-control:hover {
  border-color: rgba(255, 62, 92, 0.68);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 3.4rem rgba(239, 18, 56, 0.21);
  transform: translateY(-2px);
}

.logo-control:hover .play-badge {
  background: rgba(99, 2, 21, 0.82);
  box-shadow:
    0 0 0 6px rgba(239, 18, 56, 0.12),
    0 0 28px rgba(239, 18, 56, 0.58);
  transform: translate(-50%, -50%) scale(1.06);
}

.logo-control:focus-visible,
.mute-toggle:focus-visible,
.progress-label input:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 0.28rem;
}

.cross-beams {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cross-beams::before,
.cross-beams::after {
  content: "";
  position: absolute;
  opacity: calc(0.08 + var(--pulse) * 0.64 + var(--energy) * 0.36);
  mix-blend-mode: screen;
  transform-origin: center;
  transition: opacity 120ms linear, transform 120ms ease-out;
}

.cross-beams::before {
  top: -1px;
  left: -46vw;
  width: 92vw;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 18, 56, 0.18) 14%,
    var(--red-hot) 35% 65%,
    rgba(239, 18, 56, 0.18) 86%,
    transparent
  );
  box-shadow:
    0 0 9px var(--red),
    0 0 27px rgba(239, 18, 56, 0.3);
  transform: scaleX(calc(0.3 + var(--pulse) * 0.44 + var(--energy) * 0.33));
}

.cross-beams::after {
  top: -36vh;
  left: -1px;
  width: 2px;
  height: 72vh;
  background: linear-gradient(
    0deg,
    transparent,
    rgba(241, 232, 220, 0.15) 13%,
    var(--bone) 38% 62%,
    rgba(241, 232, 220, 0.15) 87%,
    transparent
  );
  box-shadow:
    0 0 8px rgba(241, 232, 220, 0.8),
    0 0 24px rgba(241, 232, 220, 0.22);
  transform: scaleY(calc(0.3 + var(--pulse) * 0.44 + var(--energy) * 0.33));
}

.is-playing .cross-beams::before,
.is-playing .cross-beams::after {
  opacity: calc(0.24 + var(--energy) * 0.6);
}

.mute-toggle {
  position: absolute;
  z-index: 9;
  top: -0.72rem;
  right: -0.72rem;
  display: grid;
  width: 3rem;
  min-width: 44px;
  height: 3rem;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 45, 77, 0.46);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(4, 1, 2, 0.9);
  box-shadow:
    0 0 0 4px rgba(239, 18, 56, 0.055),
    0 0 18px rgba(239, 18, 56, 0.2);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.mute-toggle:hover {
  border-color: var(--red-hot);
  color: var(--red-hot);
  background: rgba(66, 2, 16, 0.92);
  transform: scale(1.05);
}

.mute-toggle svg {
  width: 1.42rem;
  height: 1.42rem;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.speaker-body {
  stroke: none;
}

.sound-wave {
  fill: none;
  opacity: 1;
  transition: opacity 150ms ease;
}

.mute-mark {
  fill: none;
  opacity: 0;
  color: var(--red-hot);
  transition: opacity 150ms ease;
}

.is-muted .sound-wave {
  opacity: 0;
}

.is-muted .mute-mark {
  opacity: 1;
}

.is-muted .mute-toggle {
  color: #8d7e7a;
  border-color: rgba(255, 45, 77, 0.25);
}

.transport-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.45rem 0.18rem;
}

.track-time {
  min-width: 2.6em;
  color: #8d807b;
  font-size: clamp(0.46rem, 0.72vw, 0.56rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.track-time:last-child {
  text-align: right;
}

.progress-label {
  position: relative;
  display: block;
  min-height: 1.35rem;
}

.progress-label input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.progress-label input::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 32, 66, 0.68), rgba(255, 32, 66, 0.18)),
    #2d191e;
  box-shadow: 0 0 8px rgba(239, 18, 56, 0.16);
}

.progress-label input::-webkit-slider-thumb {
  width: 0.55rem;
  height: 1rem;
  margin-top: -0.44rem;
  appearance: none;
  border: 1px solid var(--bone);
  border-radius: 0;
  background: var(--red);
  box-shadow: 0 0 9px rgba(239, 18, 56, 0.55);
}

.progress-label input::-moz-range-track {
  height: 2px;
  background: #2d191e;
}

.progress-label input::-moz-range-progress {
  height: 2px;
  background: rgba(255, 32, 66, 0.68);
}

.progress-label input::-moz-range-thumb {
  width: 0.55rem;
  height: 1rem;
  border: 1px solid var(--bone);
  border-radius: 0;
  background: var(--red);
  box-shadow: 0 0 9px rgba(239, 18, 56, 0.55);
}

.deck-console {
  display: grid;
  grid-template-columns: auto 1fr minmax(5rem, 18%) 1fr auto;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  padding: 0.3rem 0.45rem 0.1rem;
}

.console-knob {
  display: block;
  width: 0.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 228, 219, 0.23);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--bone) 48% 52%, transparent 53%) 50% 13% / 60% 35% no-repeat,
    #16080b;
  box-shadow: inset 0 0 6px #000;
}

.console-leds {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.console-leds b {
  width: 3px;
  height: 3px;
  background: rgba(120, 19, 36, 0.58);
  box-shadow: 0 0 3px rgba(239, 18, 56, 0.2);
}

.is-playing .console-leds b {
  background: var(--red);
  box-shadow: 0 0 6px rgba(239, 18, 56, 0.72);
}

.is-playing .console-leds b:nth-child(2n) {
  animation: console-led 1.143s steps(2, end) infinite alternate;
}

.crossfader {
  position: relative;
  display: block;
  height: 2px;
  background: rgba(126, 109, 105, 0.28);
}

.crossfader::before,
.crossfader::after {
  content: "V";
  position: absolute;
  top: 50%;
  color: #554946;
  font-size: 0.42rem;
  transform: translateY(-50%);
}

.crossfader::before {
  right: calc(100% + 0.28rem);
}

.crossfader::after {
  content: "S";
  left: calc(100% + 0.28rem);
}

.crossfader i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42rem;
  height: 0.92rem;
  border: 1px solid rgba(255, 47, 80, 0.5);
  background: #16070a;
  box-shadow: 0 0 6px rgba(239, 18, 56, 0.25);
  transform: translate(-50%, -50%);
}

.artist-name {
  margin-top: clamp(0.72rem, 1.6vh, 1.2rem);
  font-size: clamp(1.85rem, min(6.2vw, 7vh), 4.55rem);
}

.arrival-luxe {
  position: relative;
  display: inline-flex;
  margin: clamp(0.7rem, 1.5vh, 1.15rem) 0 0;
  align-items: baseline;
  gap: 0.12em;
  color: var(--bone);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.25rem, min(5.5vw, 6.8vh), 4.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-transform: none;
  text-shadow: 0 0 28px rgba(241, 232, 220, 0.08);
  animation: title-in 760ms cubic-bezier(0.16, 1, 0.3, 1) 960ms both;
}

.arrival-luxe em {
  color: var(--red-hot);
  font-weight: 400;
  text-shadow: 0 0 22px rgba(239, 18, 56, 0.35);
}

.arrival-luxe::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: -0.28em;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-hot));
  box-shadow: 0 0 8px rgba(239, 18, 56, 0.4);
  transform: skewX(-28deg);
}

.interaction-hint {
  margin-top: clamp(0.82rem, 1.8vh, 1.2rem);
  color: #81736f;
  letter-spacing: 0.2em;
}

.is-playing .interaction-hint {
  color: #b5a29c;
}

.surge .cross-beams::before {
  animation: beam-strike-x 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.surge .cross-beams::after {
  animation: beam-strike-y 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.surge .logo-control img {
  animation: deck-logo-surge 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes platter-spin {
  to { transform: rotate(1turn); }
}

@keyframes console-led {
  from { opacity: 0.28; }
  to { opacity: 1; }
}

@keyframes beam-strike-x {
  0% { opacity: 0.08; transform: scaleX(0.08); }
  20% { opacity: 1; transform: scaleX(1); }
  45% { opacity: 0.25; transform: scaleX(0.62); }
  100% { opacity: calc(0.2 + var(--energy) * 0.5); }
}

@keyframes beam-strike-y {
  0% { opacity: 0.08; transform: scaleY(0.08); }
  20% { opacity: 1; transform: scaleY(1); }
  45% { opacity: 0.25; transform: scaleY(0.62); }
  100% { opacity: calc(0.2 + var(--energy) * 0.5); }
}

@keyframes deck-logo-surge {
  0% { filter: brightness(1); transform: scale(1); }
  18% { filter: brightness(1.75) saturate(1.38); transform: scale(1.035); }
  48% { filter: brightness(0.86) saturate(1.5); transform: scale(0.995); }
  100% {
    filter:
      drop-shadow(0 0 5px rgba(250, 25, 60, 0.38))
      drop-shadow(0 0 22px rgba(224, 0, 38, 0.15));
    transform: scale(1);
  }
}

@media (max-width: 700px) {
  body {
    overflow-y: auto;
  }

  .stage {
    padding: 4.35rem 0.55rem 7.45rem;
  }

  .dj-deck {
    width: min(96vw, 42rem);
    padding: 0.52rem;
  }

  .deck-face {
    grid-template-columns: minmax(0, 1fr) minmax(8.4rem, 1.38fr) minmax(0, 1fr);
    gap: 0.32rem;
  }

  .deck-bay {
    padding: 6%;
  }

  .tonearm {
    width: 2px;
  }

  .disc-letter {
    font-size: clamp(2.4rem, 11vw, 4.8rem);
  }

  .deck-caption {
    display: none;
  }

  .mute-toggle {
    top: -0.55rem;
    right: -0.5rem;
  }

  .artist-name {
    margin-top: 0.9rem;
    font-size: clamp(2.15rem, 10.8vw, 3.8rem);
    line-height: 0.78;
  }

  .arrival-luxe {
    margin-top: 0.8rem;
    font-size: clamp(2.2rem, 10.8vw, 4rem);
  }

  .interaction-hint {
    margin-top: 0.95rem;
    font-size: 0.5rem;
  }
}

@media (max-width: 430px) {
  .stage {
    padding-top: 4.65rem;
    padding-bottom: 7.5rem;
  }

  .kicker {
    margin-bottom: 0.55rem;
  }

  .dj-deck {
    width: min(95vw, 24.5rem);
  }

  .deck-rail {
    grid-template-columns: 1fr auto 1fr;
    font-size: 0.4rem;
  }

  .deck-face {
    grid-template-areas:
      "core core"
      "v s";
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem 0.55rem;
  }

  .deck-core {
    z-index: 6;
    grid-area: core;
    width: min(66vw, 16.2rem);
    margin-bottom: -1.7rem;
    justify-self: center;
  }

  .deck-bay-v {
    grid-area: v;
  }

  .deck-bay-s {
    grid-area: s;
  }

  .deck-bay {
    width: 100%;
    padding: 7%;
  }

  .platter {
    width: 82%;
  }

  .tonearm {
    display: none;
  }

  .disc-letter {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .mute-toggle {
    top: -0.6rem;
    right: -0.65rem;
  }

  .transport-strip {
    padding-top: 0.5rem;
  }

  .deck-console {
    grid-template-columns: auto 1fr minmax(4rem, 24%) 1fr auto;
    gap: 0.35rem;
  }

  .artist-name {
    margin-top: 0.82rem;
  }
}

@media (max-width: 360px) {
  .deck-core {
    width: min(67vw, 14.5rem);
  }

  .deck-console {
    display: none;
  }

  .artist-name {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .arrival-luxe {
    font-size: clamp(2rem, 11.5vw, 2.8rem);
  }
}

@media (max-height: 720px) and (min-width: 701px) {
  .stage {
    padding-top: 3.7rem;
    padding-bottom: 5.9rem;
  }

  .dj-deck {
    width: min(78vw, 48rem);
    padding-block: 0.45rem;
  }

  .deck-rail {
    padding-bottom: 0.38rem;
  }

  .transport-strip {
    padding-top: 0.38rem;
  }

  .deck-console {
    display: none;
  }

  .artist-name {
    margin-top: 0.5rem;
    font-size: min(5.5vw, 3.45rem);
  }

  .arrival-luxe {
    margin-top: 0.5rem;
    font-size: min(4.2vw, 2.65rem);
  }

  .interaction-hint {
    margin-top: 0.55rem;
  }
}

@media (max-height: 640px) and (min-width: 701px) {
  .dj-deck {
    width: min(72vw, 42rem);
  }

  .ticker {
    display: none;
  }

  .stage {
    padding-bottom: 3.9rem;
  }

  .arrival-luxe {
    font-size: 2rem;
  }
}

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

  .cross-beams::before,
  .cross-beams::after,
  .console-leds b {
    animation: none !important;
    transition: none !important;
  }

  .is-playing .cross-beams::before,
  .is-playing .cross-beams::after {
    opacity: 0.28;
  }
}

@media (forced-colors: active) {
  .dj-deck,
  .deck-bay,
  .logo-control,
  .mute-toggle {
    border: 1px solid CanvasText;
  }

  .disc-letter,
  .arrival-luxe,
  .arrival-luxe em {
    color: CanvasText;
  }
}
