:root {
  /* Brand — red scale (logo color #c10000) */
  --brand: #c10000;
  --brand-hover: #dc2020;
  --brand-pressed: #8a0000;
  --brand-deep: #4a0000;
  --brand-bright: #c10000;
  --brand-on: #ffffff;

  /* Neutral scale — warm black with red undertone */
  --neutral-950: #070202;
  --neutral-900: #120505;
  --neutral-800: #1c0909;
  --neutral-700: #290f0f;
  --neutral-600: #3a1616;
  --neutral-500: #582323;
  --neutral-400: #8a6b6b;
  --neutral-300: #b8a3a3;
  --neutral-200: #d9c7c7;
  --neutral-100: #f0e4e4;
  --neutral-50:  #faf4f4;

  /* Surfaces */
  --bg: var(--neutral-950);
  --bg-deep: #040101;
  --surface: rgba(20, 6, 6, 0.82);
  --surface-strong: rgba(31, 10, 10, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.06);

  /* Lines / dividers — black default, red on hover */
  --outline: #000000;
  --outline-strong: var(--brand);
  --line: #000000;
  --line-strong: var(--brand);
  --line-subtle: rgba(0, 0, 0, 0.6);

  /* Text — tonal hierarchy, all AA+ on --bg */
  --text: var(--neutral-50);
  --text-secondary: var(--neutral-200);
  --muted: var(--neutral-300);
  --text-subtle: var(--neutral-400);

  /* Legacy accent aliases (kept for existing rules) */
  --accent: var(--brand);
  --accent-hot: var(--brand-bright);
  --accent-red: var(--brand-pressed);

  /* Focus ring — bright red for visibility */
  --focus-ring: var(--brand-bright);

  /* Elevation */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 40px rgba(239, 58, 58, 0.2);
  --shadow-glow: 0 0 28px rgba(255, 107, 107, 0.32);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(193, 0, 0, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(74, 0, 0, 0.35), transparent 70%),
    linear-gradient(180deg, #0c0303 0%, #160606 50%, #080202 100%);
  background-attachment: fixed;
  position: relative;
  isolation: isolate;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff4e8;
  color: #0d0d0f;
  transform: translateY(-160%);
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px, 28px 28px;
  mix-blend-mode: soft-light;
}

/* Rising embers — tiny glowing specks floating up */
.fire-embers {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.fire-embers span {
  position: absolute;
  bottom: -4vh;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 90, 0.95) 0%, rgba(255, 80, 30, 0.7) 40%, transparent 70%);
  box-shadow: 0 0 10px rgba(255, 120, 40, 0.7);
  opacity: 0;
  animation: ember-rise linear infinite;
  will-change: transform, opacity;
}

.fire-embers span:nth-child(1)  { left:  3%; animation-duration: 11s;  animation-delay: -2s;   width: 3px; height: 3px; }
.fire-embers span:nth-child(2)  { left:  8%; animation-duration: 14s;  animation-delay: -5s;   width: 5px; height: 5px; }
.fire-embers span:nth-child(3)  { left: 13%; animation-duration:  9s;  animation-delay: -1s; }
.fire-embers span:nth-child(4)  { left: 18%; animation-duration: 13s;  animation-delay: -7s;   width: 3px; height: 3px; }
.fire-embers span:nth-child(5)  { left: 23%; animation-duration: 10s;  animation-delay: -3s;   width: 5px; height: 5px; }
.fire-embers span:nth-child(6)  { left: 28%; animation-duration: 15s;  animation-delay: -9s; }
.fire-embers span:nth-child(7)  { left: 33%; animation-duration: 12s;  animation-delay: -4s;   width: 3px; height: 3px; }
.fire-embers span:nth-child(8)  { left: 38%; animation-duration:  8s;  animation-delay: -6s;   width: 4px; height: 4px; }
.fire-embers span:nth-child(9)  { left: 43%; animation-duration: 13s;  animation-delay: -2.5s; width: 5px; height: 5px; }
.fire-embers span:nth-child(10) { left: 48%; animation-duration: 10s;  animation-delay: -8s;   width: 3px; height: 3px; }
.fire-embers span:nth-child(11) { left: 53%; animation-duration: 16s;  animation-delay: -11s; }
.fire-embers span:nth-child(12) { left: 58%; animation-duration:  9s;  animation-delay: -6.5s; width: 3px; height: 3px; }
.fire-embers span:nth-child(13) { left: 63%; animation-duration: 12s;  animation-delay: -0.5s; width: 4px; height: 4px; }
.fire-embers span:nth-child(14) { left: 68%; animation-duration: 14s;  animation-delay: -10s;  width: 5px; height: 5px; }
.fire-embers span:nth-child(15) { left: 73%; animation-duration:  9s;  animation-delay: -3.5s; width: 3px; height: 3px; }
.fire-embers span:nth-child(16) { left: 78%; animation-duration: 11s;  animation-delay: -5.5s; }
.fire-embers span:nth-child(17) { left: 83%; animation-duration: 15s;  animation-delay: -12s;  width: 5px; height: 5px; }
.fire-embers span:nth-child(18) { left: 88%; animation-duration:  8s;  animation-delay: -4.5s; width: 3px; height: 3px; }
.fire-embers span:nth-child(19) { left: 93%; animation-duration: 13s;  animation-delay: -7.5s; width: 4px; height: 4px; }
.fire-embers span:nth-child(20) { left: 97%; animation-duration: 10s;  animation-delay: -1.5s; width: 3px; height: 3px; }
.fire-embers span:nth-child(21) { left:  6%; animation-duration: 17s;  animation-delay: -9.5s; width: 4px; height: 4px; }
.fire-embers span:nth-child(22) { left: 16%; animation-duration:  8.5s;animation-delay: -3.2s; }
.fire-embers span:nth-child(23) { left: 26%; animation-duration: 14s;  animation-delay: -10.5s;width: 5px; height: 5px; }
.fire-embers span:nth-child(24) { left: 36%; animation-duration: 11.5s;animation-delay: -2.8s; width: 3px; height: 3px; }
.fire-embers span:nth-child(25) { left: 46%; animation-duration:  9.5s;animation-delay: -5.8s; width: 4px; height: 4px; }
.fire-embers span:nth-child(26) { left: 56%; animation-duration: 13.5s;animation-delay: -0.8s; }
.fire-embers span:nth-child(27) { left: 66%; animation-duration: 10.5s;animation-delay: -8.5s; width: 5px; height: 5px; }
.fire-embers span:nth-child(28) { left: 76%; animation-duration: 12.5s;animation-delay: -4.2s; width: 3px; height: 3px; }
.fire-embers span:nth-child(29) { left: 86%; animation-duration: 16s;  animation-delay: -11.5s;width: 4px; height: 4px; }
.fire-embers span:nth-child(30) { left: 21%; animation-duration:  9s;  animation-delay: -6.8s; width: 4px; height: 4px; }
.fire-embers span:nth-child(31) { left: 41%; animation-duration: 12s;  animation-delay: -9.8s; width: 3px; height: 3px; }
.fire-embers span:nth-child(32) { left: 61%; animation-duration: 14.5s;animation-delay: -3.8s; width: 5px; height: 5px; }
.fire-embers span:nth-child(33) { left: 81%; animation-duration:  8s;  animation-delay: -7.2s; width: 3px; height: 3px; }
.fire-embers span:nth-child(34) { left: 50%; animation-duration: 11s;  animation-delay: -5.2s; width: 4px; height: 4px; }
.fire-embers span:nth-child(35) { left: 70%; animation-duration: 13s;  animation-delay: -1.8s; width: 5px; height: 5px; }

@keyframes ember-rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  8%   { opacity: 1; }
  40%  { transform: translate3d(24px, -40vh, 0) scale(1); opacity: 0.9; }
  70%  { transform: translate3d(-16px, -72vh, 0) scale(0.8); opacity: 0.55; }
  100% { transform: translate3d(8px, -105vh, 0) scale(0.3); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fire-embers span {
    animation: none;
  }
  .fire-embers { display: none; }
}

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

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

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 6px;
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 80px;
}

.site-header {
  position: relative;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  position: sticky;
  top: 12px;
  z-index: 40;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(14, 5, 5, 0.72);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease;
}

.topbar:hover {
  border-color: var(--outline-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 0;
  background: none;
}

.brand-mark {
  width: 82px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(255, 107, 107, 0.55));
}

.topbar-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar-links a {
  color: var(--muted);
  transition: color 180ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.topbar-links a:hover {
  color: var(--brand);
}

.nav-cta,
.button,
.chip {
  border: 1px solid transparent;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta-group {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--brand-hover), var(--brand-pressed));
  color: var(--brand-on);
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  border-color: var(--outline-strong);
}


.hero {
  padding: 18px 0 12px;
  scroll-margin-top: 110px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.about-card,
.stat-card,
.release-card,
.video-card,
.show-status,
.show-archive,
.link-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hero-copy:hover {
  border-color: var(--outline-strong);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 36px 40px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 95% 0%, rgba(239, 58, 58, 0.32), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(74, 0, 0, 0.45), transparent 60%),
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(193, 0, 0, 0.16), transparent 70%),
    linear-gradient(155deg, #2a0c0c 0%, #180606 45%, #0a0303 100%);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), transparent 35%),
    radial-gradient(ellipse 40% 30% at 85% 12%, rgba(255, 180, 100, 0.12), transparent 60%);
  border-radius: 24px;
  pointer-events: none;
}

.eyebrow,
.card-kicker,
.release-date,
.release-genre,
.status-pill {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--brand);
  font-family: "Archivo Black", "Inter", sans-serif;
}

.release-genre {
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", "Inter", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--accent);
}

h1 {
  margin-top: 12px;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--text);
  font-size: 0.72em;
  margin-top: 4px;
}

.hero-text,
.section-text,
.about-card p,
.release-note,
.video-card p,
.show-status p,
.show-archive p,
.hero-spotlight p,
.hero-mini-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 48ch;
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.hero-actions,
.chip-row,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 34rem;
  font-size: 0.92rem;
}

.hero-points p {
  margin: 0;
  padding-left: 18px;
  position: relative;
}

.hero-points p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-red));
}

.button,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.button:hover,
.chip:hover,
.link-card:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--brand-on);
  border-color: var(--line);
  background: linear-gradient(135deg, var(--brand-hover), var(--brand-pressed));
  box-shadow: var(--shadow-glow);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  border-color: var(--outline-strong);
}

.button-primary:active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  transform: translateY(0);
}

.button-ghost:hover,
.chip:hover {
  border-color: var(--outline-strong);
  background: var(--surface-hover);
}

.button-ghost,
.chip {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 14px;
}

.hero-spotlight,
.hero-mini-card,
.about-card,
.stat-card,
.release-card,
.video-card,
.show-status,
.show-archive,
.link-card {
  border-radius: var(--radius-xl);
}

.hero-spotlight {
  overflow: hidden;
}

.hero-release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px;
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 107, 107, 0.16) inset;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 58, 58, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(74, 0, 0, 0.45), transparent 70%),
    linear-gradient(165deg, #280a0a 0%, #140404 55%, #0a0202 100%);
}

.hero-release-art-wrap {
  aspect-ratio: 0.86;
  min-height: 200px;
}

.hero-release-card .card-kicker {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.hero-release-card .release-content {
  margin-top: 0;
}

.hero-release-card .release-art {
  transform: scale(0.98);
}

.hero-release-card:hover .release-art {
  transform: scale(1.02);
}

.hero-release-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  max-width: 14ch;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-release-content p {
  margin: 14px 0 0;
  max-width: 38ch;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-mini-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  touch-action: manipulation;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent),
    rgba(255, 255, 255, 0.03);
}

.hero-mini-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Archivo Black", "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-mini-card {
  padding: 14px 16px;
}

.hero-mini-card p {
  margin: 10px 0 0;
}

.ticker {
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 107, 107, 0.07);
  transition: border-color 180ms ease;
}

.ticker:hover {
  border-color: var(--outline-strong);
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  padding: 14px 0;
  min-width: max-content;
  animation: ticker 22s linear infinite;
  font-family: "Archivo Black", "Inter", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 200, 200, 0.78);
}

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

.section {
  padding: 40px 0 8px;
  scroll-margin-top: 110px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  text-transform: uppercase;
}

.about-grid,
.stats-grid,
.release-grid,
.video-grid,
.links-grid,
.shows-layout {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.about-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(255, 255, 255, 0.03);
}

.about-card-main {
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(239, 58, 58, 0.26), transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(74, 0, 0, 0.4), transparent 65%),
    linear-gradient(160deg, #260909 0%, #120404 55%, #080202 100%);
}

.about-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.about-card-main {
  text-align: center;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.stat-card {
  padding: 20px;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(255, 255, 255, 0.03);
}

.stat-value {
  margin: 0;
  font-family: "Archivo Black", "Inter", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.2;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  word-break: break-word;
  hyphens: auto;
}

.stat-label {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  word-break: break-word;
  hyphens: auto;
}

.filter {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.filter select {
  min-height: 44px;
  min-width: 148px;
  padding: 10px 38px 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background-color: #140505;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23c10000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.filter select:hover,
.filter select:focus {
  border-color: var(--outline-strong);
  box-shadow: var(--shadow-glow);
  outline: none;
}

.filter select option {
  background-color: #140505;
  color: var(--text);
  padding: 10px;
}

.filter select option:checked,
.filter select option:hover {
  background-color: var(--brand);
  color: #fff;
}

.stat-card,
.about-card,
.show-status,
.show-archive,
.link-card,
.video-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-hover);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.release-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(255, 255, 255, 0.03);
}

.release-card:hover {
  border-color: var(--outline-strong);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.release-art-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  transition: border-color 180ms ease;
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(239, 58, 58, 0.22), transparent 60%),
    linear-gradient(170deg, #2a0b0b 0%, #150505 55%, #0a0303 100%);
}

.release-card:hover .release-art-wrap,
.video-card:hover .video-art-wrap {
  border-color: var(--outline-strong);
}

.release-art-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 3, 3, 0.55) 100%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 180, 100, 0.12), transparent 60%);
  pointer-events: none;
}

.release-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(0.92);
  transition: transform 260ms ease;
  background:
    linear-gradient(135deg, var(--brand-deep), var(--neutral-950));
}

.release-card:hover .release-art {
  transform: scale(0.96);
}

.release-content {
  padding: 22px;
}

.release-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.release-card h3,
.video-card h3,
.show-status h3,
.show-archive h3,
.link-card h3 {
  margin-top: 12px;
  font-size: 1.45rem;
}

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

.video-card,
.show-status,
.show-archive,
.link-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(255, 255, 255, 0.03);
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-cover-link {
  display: block;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  touch-action: manipulation;
}

.video-art-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: -24px -24px 18px;
  border: 1px solid var(--line);
  transition: border-color 180ms ease;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(239, 58, 58, 0.22), transparent 60%),
    linear-gradient(170deg, #28090a 0%, #130404 55%, #0a0303 100%);
}

.video-art-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 3, 3, 0.52) 100%),
    linear-gradient(130deg, rgba(255, 180, 100, 0.08), transparent 48%);
  pointer-events: none;
}

.video-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}


.video-tag,
.video-play-button {
  position: absolute;
  z-index: 1;
}

.video-tag {
  top: 36px;
  left: 36px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 6, 6, 0.72);
  backdrop-filter: blur(10px);
  color: var(--brand);
  font-family: "Archivo Black", "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-play-button {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.74);
  color: #fff4e8;
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.video-play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 10px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--accent);
}

.video-card .chip-row {
  margin-top: auto;
}

.video-card:hover,
.show-status:hover,
.show-archive:hover,
.link-card:hover,
.about-card:hover,
.stat-card:hover,
.hero-release-card:hover,
.hero-mini-card:hover {
  border-color: var(--outline-strong);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.video-cover-link:hover .video-play-button,
.video-cover-link:focus-visible .video-play-button {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(255, 107, 107, 0.28);
  border-color: rgba(255, 133, 133, 0.7);
}

.video-card:hover .video-art {
  transform: scale(1.04);
}

.shows-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.status-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 107, 107, 0.18);
  transition: border-color 180ms ease;
}

.show-status:hover .status-pill {
  border-color: var(--outline-strong);
}

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

.link-card {
  display: block;
}

.link-card h3 {
  min-height: 3.2em;
}

.text-link {
  color: var(--brand);
  font-weight: 800;
}

.text-link:hover {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1280px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero-stage,
  .about-grid,
  .shows-layout,
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-release-card {
    min-height: 400px;
  }

  .hero-copy {
    padding: 28px 28px;
  }

  h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
  }
}

@media (max-width: 940px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding: 12px 0 56px;
  }

  /* Topbar: compact top row (brand + CTAs), links go below as scrollable chips */
  .topbar {
    grid-template-columns: auto 1fr;
    grid-template-areas: "brand cta" "links links";
    align-items: center;
    gap: 10px 12px;
    padding: 10px 14px;
    border-radius: 22px;
    top: 8px;
  }

  .brand {
    grid-area: brand;
    width: 56px;
    height: 56px;
  }

  .brand-mark {
    width: 56px;
  }

  .nav-cta-group {
    grid-area: cta;
    justify-self: end;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .topbar-links {
    grid-area: links;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 2px 0 2px;
    margin: 0;
    width: 100%;
  }

  .topbar-links a {
    flex: 0 1 auto;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-subtle);
    font-size: 0.78rem;
    min-height: 32px;
    white-space: nowrap;
  }

  /* Grid collapse */
  .hero-stage,
  .about-grid,
  .release-grid,
  .shows-layout,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

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

  .section-heading-row {
    display: grid;
  }

  .hero-copy {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .hero-copy::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-visual {
    min-height: auto;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    margin-top: 8px;
  }

  .hero-text {
    font-size: 0.96rem;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-points {
    margin-top: 20px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-mini-card {
    padding: 14px 16px;
  }

  .hero-mini-card strong {
    font-size: 0.88rem;
  }

  .hero-release-card {
    min-height: auto;
  }

  .hero-release-art-wrap {
    min-height: 180px;
    aspect-ratio: 1;
  }

  .hero-release-card .card-kicker {
    left: 12px;
    top: 12px;
    font-size: 0.62rem;
    padding: 6px 10px;
  }

  .hero-release-content h2 {
    max-width: none;
    font-size: clamp(1.15rem, 5.5vw, 1.6rem);
  }

  .hero-release-content p {
    font-size: 0.92rem;
  }

  /* Sections */
  .section {
    padding: 24px 0 8px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: clamp(1.3rem, 6vw, 1.85rem);
    margin-top: 8px;
  }

  .section-text {
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  /* Cards */
  .release-content,
  .about-card,
  .video-card,
  .show-status,
  .show-archive,
  .link-card,
  .stat-card {
    padding: 18px;
  }

  .release-card h3,
  .video-card h3,
  .show-status h3,
  .show-archive h3,
  .link-card h3 {
    font-size: 1.15rem;
  }

  .release-meta {
    flex-direction: row;
    gap: 10px;
  }

  .release-note,
  .hero-text,
  .about-card p,
  .video-card p,
  .show-status p,
  .show-archive p {
    font-size: 0.93rem;
  }

  .chip,
  .button {
    font-size: 0.85rem;
    padding: 8px 14px;
    min-height: 40px;
  }

  .chip-row {
    gap: 8px;
  }

  /* Video */
  .video-art-wrap {
    margin: -18px -18px 14px;
  }

  .video-play-button {
    min-width: 90px;
    min-height: 42px;
    font-size: 0.72rem;
    padding: 8px 14px;
  }

  .video-tag {
    top: 14px;
    left: 14px;
    font-size: 0.6rem;
    min-height: 28px;
    padding: 6px 10px;
  }

  /* Stat cards compact */
  .stat-value {
    font-size: clamp(0.9rem, 3.4vw, 1.1rem);
  }

  .stat-label {
    font-size: 0.88rem;
  }

  /* Ticker */
  .ticker-track {
    gap: 20px;
    font-size: 0.72rem;
  }

  /* About main logo */
  .about-logo {
    width: 180px;
  }

  /* Shows — action buttons don't overflow */
  .show-status .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .show-status .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 14px, 1240px);
    padding: 10px 0 48px;
  }

  .topbar {
    padding: 8px 12px;
    border-radius: 20px;
    gap: 8px 10px;
  }

  .brand,
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .nav-cta-group {
    gap: 4px;
  }

  .nav-cta {
    padding: 6px 10px;
    font-size: 0.76rem;
    min-height: 36px;
  }

  .topbar-links {
    gap: 5px;
  }

  .topbar-links a {
    font-size: 0.72rem;
    padding: 4px 9px;
    min-height: 28px;
  }

  .hero-copy {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .hero-copy::before {
    inset: 6px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(1.55rem, 8.5vw, 2.1rem);
    margin-top: 4px;
  }

  .section-heading h2 {
    font-size: clamp(1.15rem, 6.5vw, 1.55rem);
  }

  .hero-text,
  .hero-points {
    font-size: 0.9rem;
  }

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

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

  .links-grid,
  .stats-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .release-content,
  .about-card,
  .video-card,
  .show-status,
  .show-archive,
  .link-card,
  .stat-card {
    padding: 16px;
  }

  .release-card h3,
  .video-card h3,
  .show-status h3,
  .show-archive h3,
  .link-card h3 {
    font-size: 1.05rem;
  }

  .chip,
  .button {
    font-size: 0.82rem;
    padding: 7px 12px;
    min-height: 38px;
  }

  .video-art-wrap {
    margin: -16px -16px 12px;
  }

  .ticker-track {
    gap: 16px;
    font-size: 0.68rem;
  }

  .about-logo {
    width: 150px;
  }

  .hero-release-content h2 {
    font-size: clamp(1rem, 5.2vw, 1.35rem);
  }

  .filter {
    width: 100%;
  }

  .filter select {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .page-shell {
    width: min(100% - 10px, 1240px);
  }

  .topbar {
    padding: 7px 10px;
  }

  .brand,
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .nav-cta {
    padding: 6px 10px;
    font-size: 0.78rem;
    min-height: 36px;
  }

  .topbar-links a {
    font-size: 0.76rem;
    padding: 4px 9px;
  }

  h1 {
    font-size: clamp(1.35rem, 7.5vw, 1.8rem);
  }

  .hero-copy {
    padding: 16px 14px;
  }

  .section-heading h2 {
    font-size: clamp(1.05rem, 7vw, 1.35rem);
  }
}
