:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(17, 17, 18, 0.82);
  --panel-strong: #111113;
  --text: #f5f0e9;
  --muted: #b5aaa0;
  --dim: #776d66;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff2e2e;
  --flame: #ff5a1f;
  --ember: #ff9d38;
  --hot: #ffd35c;
  --cyan: #41e4ff;
  --steel: #8a98a6;
  --steel-dark: #2b3136;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  background:
    radial-gradient(circle at 52% -8%, rgba(255, 90, 31, 0.18), transparent 26rem),
    radial-gradient(circle at 18% 12%, rgba(255, 46, 46, 0.16), transparent 28rem),
    radial-gradient(circle at 76% 6%, rgba(65, 228, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #030303 0%, #0b0908 48%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(160deg, transparent 0 48%, rgba(255, 211, 92, 0.12) 49%, transparent 50%),
    linear-gradient(24deg, transparent 0 46%, rgba(138, 152, 166, 0.11) 47%, transparent 49%),
    linear-gradient(115deg, rgba(255,255,255,0.04), transparent 34%),
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0 1px, transparent 1px 5px);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: 1;
  height: 36vh;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 12% 100%, rgba(255, 90, 31, 0.42), transparent 38%),
    radial-gradient(ellipse at 76% 100%, rgba(255, 157, 56, 0.24), transparent 34%);
  filter: blur(22px);
}

body::after {
  inset: 0;
  height: auto;
  opacity: 0.11;
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 43%, transparent 45%),
    linear-gradient(64deg, transparent 0 66%, rgba(138, 152, 166, 0.16) 67%, transparent 69%);
  animation: steelSweep 8s linear infinite;
}

@keyframes steelSweep {
  0% { transform: translateX(-12%); }
  100% { transform: translateX(12%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 46px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 4, 5, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.player-controls,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(255, 46, 46, 0.88), rgba(7, 7, 8, 0.95) 55%, rgba(65, 228, 255, 0.6));
  box-shadow: 0 0 28px rgba(255, 46, 46, 0.28), inset 0 0 14px rgba(255, 211, 92, 0.2);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-copy small,
.panel-label,
.eyebrow,
.track span,
.release-row span,
.release-row small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(245, 240, 233, 0.78);
  font-size: 0.92rem;
}

.main-nav a,
.site-footer a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: white;
  text-shadow: 0 0 18px rgba(65, 228, 255, 0.5);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.button:hover,
.header-action:hover,
.track:hover,
.video-thumb:hover,
.show-list a:hover {
  transform: translateY(-1px);
}

.button.primary,
.header-action:hover {
  border-color: rgba(255, 46, 46, 0.62);
  background: linear-gradient(135deg, var(--hot), var(--flame) 24%, #d01818 56%, #171717);
  box-shadow: 0 0 32px rgba(255, 90, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button.ghost:hover,
.header-action {
  box-shadow: inset 0 0 0 1px rgba(65, 228, 255, 0.14), 0 0 26px rgba(65, 228, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 4vw, 46px) 54px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  left: -8%;
  right: -8%;
  bottom: -7%;
  z-index: -1;
  height: 34%;
  background:
    radial-gradient(ellipse at 16% 100%, rgba(255, 90, 31, 0.55), transparent 34%),
    radial-gradient(ellipse at 42% 106%, rgba(255, 157, 56, 0.34), transparent 32%),
    radial-gradient(ellipse at 78% 102%, rgba(255, 46, 46, 0.36), transparent 36%);
  filter: blur(18px);
  opacity: 0.86;
}

.hero::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(108deg, transparent 0 28%, rgba(138, 152, 166, 0.15) 29%, transparent 31%),
    linear-gradient(72deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 69%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-studio.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.1);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.24) 68%, rgba(0, 0, 0, 0.84) 100%),
    radial-gradient(circle at 38% 88%, rgba(255, 90, 31, 0.24), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 58%, var(--bg) 100%);
}

.hero-inner {
  width: min(740px, 100%);
}

.kicker,
.eyebrow,
.hero-stat {
  color: var(--ember);
  font-weight: 900;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 10.6rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(255, 46, 46, 0.34), 0 2px 0 #000;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 4px;
  color: rgba(245, 240, 233, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-stat {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.stream-links,
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stream-links {
  margin-top: 18px;
}

.stream-links a,
.contact-tags span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(245, 240, 233, 0.76);
  background:
    linear-gradient(135deg, rgba(138, 152, 166, 0.12), rgba(255, 90, 31, 0.07)),
    rgba(0, 0, 0, 0.28);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 46px;
  width: min(310px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(138, 152, 166, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(18, 19, 20, 0.82), rgba(8, 8, 9, 0.76));
  backdrop-filter: blur(18px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.38), 0 0 34px rgba(255, 90, 31, 0.12);
}

.compact-player {
  overflow: hidden;
}

.fireline {
  position: absolute;
  inset: auto 10px 0;
  height: 62px;
  pointer-events: none;
  opacity: 0.8;
  filter: blur(1px);
}

.fireline span {
  position: absolute;
  bottom: -18px;
  width: 34%;
  height: 62px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 211, 92, 0.7), transparent 48%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 90, 31, 0.66), transparent 62%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 46, 46, 0.38), transparent 72%);
  animation: heroFlame 1.8s ease-in-out infinite alternate;
}

.fireline span:nth-child(1) {
  left: 4%;
}

.fireline span:nth-child(2) {
  left: 32%;
  height: 74px;
  animation-delay: 220ms;
}

.fireline span:nth-child(3) {
  right: 4%;
  animation-delay: 420ms;
}

@keyframes heroFlame {
  to {
    transform: translateY(-9px) scaleX(1.08);
    opacity: 0.58;
  }
}

.hero-panel strong {
  display: block;
  margin: 7px 0;
  font-size: 1.16rem;
}

.hero-panel p {
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-play {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  margin: 2px 0 10px;
  border: 1px solid rgba(255, 90, 31, 0.5);
  border-radius: 6px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 211, 92, 0.88), rgba(255, 90, 31, 0.72) 42%, rgba(10, 10, 10, 0.78));
  box-shadow: 0 0 24px rgba(255, 90, 31, 0.18);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-play:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.hero-mini-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 32px;
}

.signal-bars span {
  width: 7px;
  height: 12px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(65, 228, 255, 0.6);
  animation: pulse 900ms ease-in-out infinite alternate;
}

.signal-bars span:nth-child(2) { height: 24px; animation-delay: 120ms; }
.signal-bars span:nth-child(3) { height: 16px; animation-delay: 240ms; }
.signal-bars span:nth-child(4) { height: 29px; animation-delay: 360ms; }
.signal-bars span:nth-child(5) { height: 20px; animation-delay: 480ms; }

@keyframes pulse {
  to { transform: scaleY(0.38); opacity: 0.42; }
}

.ticker {
  display: flex;
  gap: 26px;
  overflow: hidden;
  contain: layout paint;
  padding: 14px clamp(18px, 4vw, 46px);
  border-block: 1px solid var(--line);
  color: rgba(245, 240, 233, 0.74);
  background: #0d0d0e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(255, 90, 31, 0.14);
  white-space: nowrap;
}

.ticker span {
  flex: 0 0 auto;
  animation: tickerGlow 2.8s ease-in-out infinite alternate;
}

.ticker span:nth-child(2) { animation-delay: 250ms; }
.ticker span:nth-child(3) { animation-delay: 500ms; }
.ticker span:nth-child(4) { animation-delay: 750ms; }

@keyframes tickerGlow {
  to { color: rgba(255, 211, 92, 0.92); text-shadow: 0 0 14px rgba(255, 90, 31, 0.42); }
}

.section,
.contact-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.section-heading h2,
.contact-band h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading.wide {
  max-width: 760px;
}

.section-heading p:last-child,
.contact-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.about-section .section-heading {
  position: sticky;
  top: 96px;
}

.about-story {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border-left: 1px solid rgba(255, 157, 56, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 90, 31, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(138, 152, 166, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 22px 0 32px rgba(255, 90, 31, 0.035);
}

.about-story::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: -2px;
  width: 3px;
  background: linear-gradient(180deg, var(--hot), var(--flame), transparent);
  box-shadow: 0 0 24px rgba(255, 90, 31, 0.48);
}

.about-story p {
  margin-bottom: 1rem;
  color: rgba(245, 240, 233, 0.8);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.about-story .lead {
  color: var(--text);
  font-size: clamp(1.28rem, 2.4vw, 1.8rem);
  line-height: 1.24;
  font-weight: 850;
}

.about-callout,
.dedication {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-story .about-callout {
  color: rgba(255, 211, 92, 0.92);
  font-weight: 800;
}

.about-story .dedication {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 900;
}

.player-shell {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(255, 211, 92, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(138, 152, 166, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(16, 16, 18, 0.94), rgba(5, 5, 6, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 211, 92, 0.04),
    0 22px 70px rgba(0, 0, 0, 0.32),
    0 0 38px rgba(255, 90, 31, 0.1);
}

.forged-console-player .console-flame {
  position: absolute;
  inset: auto 2% -18px;
  height: 190px;
  opacity: 0.84;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(255, 211, 92, 0.58), transparent 24%),
    radial-gradient(ellipse at 32% 100%, rgba(255, 90, 31, 0.76), transparent 34%),
    radial-gradient(ellipse at 48% 100%, rgba(255, 211, 92, 0.5), transparent 22%),
    radial-gradient(ellipse at 58% 100%, rgba(255, 46, 46, 0.66), transparent 36%),
    radial-gradient(ellipse at 74% 100%, rgba(255, 157, 56, 0.68), transparent 30%),
    radial-gradient(ellipse at 88% 100%, rgba(255, 46, 46, 0.36), transparent 34%);
  filter: blur(9px) saturate(1.12);
  animation: consoleFlame 1.85s ease-in-out infinite alternate;
}

.forged-console-player .console-flame::before,
.forged-console-player .console-flame::after {
  content: "";
  position: absolute;
  inset: 18px 8% 0;
  background:
    radial-gradient(ellipse at 24% 100%, rgba(255, 243, 166, 0.44), transparent 18%),
    radial-gradient(ellipse at 42% 100%, rgba(255, 211, 92, 0.5), transparent 22%),
    radial-gradient(ellipse at 62% 100%, rgba(255, 90, 31, 0.54), transparent 24%),
    radial-gradient(ellipse at 78% 100%, rgba(255, 226, 124, 0.36), transparent 18%);
  filter: blur(7px);
  animation: consoleFlameLayer 1.28s ease-in-out infinite alternate;
}

.forged-console-player .console-flame::after {
  inset: 42px 16% 0;
  opacity: 0.56;
  animation-delay: 0.28s;
}

@keyframes consoleFlame {
  to { transform: translateY(-16px) scaleX(1.05); opacity: 0.62; }
}

@keyframes consoleFlameLayer {
  to { transform: translateY(-30px) scaleX(0.92); opacity: 0.42; }
}

.player-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.player-topline span:last-child {
  color: var(--hot);
  text-shadow: 0 0 18px rgba(255, 90, 31, 0.34);
}

.player-shell::after,
.contact-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 42%, transparent 52%);
  transform: translateX(-72%);
  animation: panelSheen 6.5s ease-in-out infinite;
}

.forged-console-player::after {
  display: none;
}

@keyframes panelSheen {
  0%, 48% { transform: translateX(-78%); opacity: 0; }
  58% { opacity: 0.8; }
  100% { transform: translateX(78%); opacity: 0; }
}

.now-playing {
  position: relative;
  z-index: 1;
  display: block;
  padding: 2px 0 8px;
  text-align: center;
}

.cover,
.video-thumb,
.modal-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-image: url("assets/hero-studio.png");
  background-size: cover;
}

.cover {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background-position: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.28);
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(255, 90, 31, 0.22) 43%, transparent 44%),
    repeating-conic-gradient(from 0deg, rgba(255,255,255,0.05) 0 8deg, transparent 8deg 16deg);
  mix-blend-mode: screen;
}

.disc {
  position: relative;
  z-index: 1;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 13px solid rgba(0, 0, 0, 0.66);
  outline: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle, var(--cyan) 0 8%, #101010 9% 100%);
  box-shadow: 0 0 26px rgba(65, 228, 255, 0.36);
  animation: discTurn 8s linear infinite;
}

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

.now-playing h3 {
  margin: 6px 0 4px;
  font-size: clamp(1.45rem, 4vw, 2.65rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.track-detail {
  min-width: 0;
}

.console-flame-space {
  position: relative;
  z-index: 1;
  height: 46px;
}

.now-playing p,
.video-info p,
.show-list span {
  color: var(--muted);
}

.player-controls {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: stretch;
  gap: 12px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.player-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.player-stats strong {
  color: var(--hot);
}

.like-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: inherit;
}

.like-button:hover:not(:disabled),
.like-button.liked {
  color: var(--hot);
  background: transparent;
}

.like-button:disabled {
  cursor: default;
  opacity: 0.72;
}

.icon-button,
.play-button,
.modal-close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  cursor: pointer;
}

.icon-button {
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.025);
}

.play-button {
  min-width: 0;
  width: auto;
  height: 52px;
  padding: 0 18px;
  border-color: rgba(255, 46, 46, 0.65);
  background: linear-gradient(135deg, var(--hot), var(--flame) 32%, #d01818 72%, #1a0b0b);
  box-shadow: 0 0 30px rgba(255, 46, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.play-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.progress {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.075);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--ember), var(--cyan));
  box-shadow: 0 0 18px rgba(255, 46, 46, 0.5);
  transition: width 120ms linear;
}

.track-list {
  display: grid;
  gap: 10px;
}

.track {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.track:hover,
.track.active {
  border-color: rgba(255, 90, 31, 0.58);
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.18), rgba(138, 152, 166, 0.08));
}

.track.is-coming small {
  color: var(--hot);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 16px;
  margin-top: 28px;
}

.coming-soon-video {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: clamp(150px, 22vw, 240px);
  margin-top: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.coming-soon-video::before,
.coming-soon-video::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coming-soon-video::before {
  inset: auto 18% 16%;
  height: 34%;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(255, 211, 92, 0.22), transparent 26%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 90, 31, 0.26), transparent 34%),
    radial-gradient(ellipse at 70% 100%, rgba(255, 46, 46, 0.18), transparent 28%);
  filter: blur(16px);
  animation: flameLift 2.8s ease-in-out infinite alternate;
}

.coming-soon-video::after {
  display: none;
}

.coming-soon-video span,
.coming-soon-video strong {
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
}

.coming-soon-video span {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 950;
  line-height: 0.88;
  text-shadow: 0 0 34px rgba(255, 90, 31, 0.42), 0 3px 0 #000;
}

.coming-soon-video strong {
  margin-top: 8px;
  color: var(--hot);
  font-size: clamp(0.78rem, 1.5vw, 1.05rem);
  letter-spacing: 0.16em;
  text-shadow: 0 0 24px rgba(255, 90, 31, 0.52);
}

@keyframes flameLift {
  to {
    transform: translateY(-18px) scaleX(1.04);
    opacity: 0.78;
  }
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(138, 152, 166, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 211, 92, 0.025);
}

.video-card.featured {
  grid-row: span 2;
}

.video-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-position: center;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease;
}

.video-thumb:hover {
  filter: saturate(1.22) contrast(1.08);
}

.featured .video-thumb {
  aspect-ratio: 16 / 13;
}

.video-thumb::before,
.cover::before,
.modal-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 46, 46, 0.34), transparent 45%, rgba(65, 228, 255, 0.22));
}

.video-thumb.alt-one {
  background-position: 30% center;
}

.video-thumb.alt-two {
  background-position: 72% center;
}

.play-glow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 34px rgba(255, 46, 46, 0.58), inset 0 0 18px rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-thumb:hover .play-glow {
  transform: scale(1.08);
  box-shadow: 0 0 44px rgba(255, 90, 31, 0.72), 0 0 20px rgba(65, 228, 255, 0.3);
}

.video-info {
  padding: 16px;
}

.video-info h3 {
  margin: 5px 0 6px;
}

.release-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.release-row article {
  display: grid;
  gap: 8px;
  min-height: 170px;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(138, 152, 166, 0.22), transparent 42%),
    radial-gradient(circle at 18% 100%, rgba(255, 90, 31, 0.26), transparent 52%),
    linear-gradient(0deg, rgba(255, 46, 46, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.release-row article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 157, 56, 0.42);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.22), 0 0 34px rgba(255, 90, 31, 0.14);
}

.release-row strong {
  font-size: 1.25rem;
}

.shows {
  padding-top: 34px;
}

.show-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.show-list article {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.show-list time {
  color: var(--ember);
  font-weight: 900;
  text-transform: uppercase;
}

.show-list div {
  display: grid;
}

.show-list a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  color: rgba(245, 240, 233, 0.8);
}

.contact-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 34px rgba(138, 152, 166, 0.06), 0 0 46px rgba(255, 90, 31, 0.08);
}

.contact-tags {
  margin-top: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(65, 228, 255, 0.58);
  box-shadow: 0 0 0 3px rgba(65, 228, 255, 0.12);
}

textarea {
  resize: vertical;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(820px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #0d0d0e;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.64);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
}

.modal-screen {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background-position: center;
}

.modal-screen video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
  object-fit: contain;
  background: #000;
}

.modal-card a {
  color: var(--hot);
}

.modal-card h2 {
  margin: 16px 0 4px;
}

.modal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 46px);
  border-top: 1px solid var(--line);
  color: var(--dim);
}

.site-footer div {
  gap: 18px;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(65, 228, 255, 0.08), transparent 22rem),
    #050505;
}

.admin-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 60px;
}

.admin-top,
.admin-grid,
.admin-fields,
.admin-row {
  display: grid;
  gap: 16px;
}

.admin-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 22px;
}

.admin-top nav {
  display: flex;
  gap: 10px;
}

.admin-login {
  width: min(520px, 100%);
  margin: 12vh auto 0;
}

.admin-login h1,
.admin-top h1 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-grid {
  grid-template-columns: 1fr 320px;
  align-items: start;
}

.admin-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(138, 152, 166, 0.1), transparent 34%),
    rgba(17, 17, 18, 0.82);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.32);
}

.admin-card h2,
.admin-editor h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
}

.admin-editor {
  display: grid;
  gap: 28px;
}

.admin-editor section {
  display: grid;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-fields.two,
.admin-row.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-row.three-cols {
  grid-template-columns: 0.55fr 1fr 0.45fr;
}

.admin-help {
  margin: -4px 0 4px;
  color: var(--muted);
}

.admin-help code {
  color: var(--hot);
}

.admin-row.track-cols {
  grid-template-columns: minmax(150px, 1.05fr) minmax(120px, 0.7fr) minmax(300px, 2fr) 132px;
  gap: 10px;
  align-items: center;
}

.admin-row.track-cols input,
.admin-row.track-cols select {
  min-height: 40px;
  padding: 10px 11px;
}

.admin-row.track-cols select {
  appearance: none;
  padding-right: 28px;
  background:
    linear-gradient(45deg, transparent 50%, var(--hot) 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--hot) 50%, transparent 50%) calc(100% - 12px) 50% / 6px 6px no-repeat,
    rgba(0, 0, 0, 0.32);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-row.video-cols {
  grid-template-columns: 0.72fr 0.9fr 1.3fr 1.1fr 1.1fr;
}

.admin-row.show-cols {
  grid-template-columns: 0.72fr 0.52fr 1fr 0.8fr 0.55fr 0.9fr;
}

.admin-row input,
.admin-card input[type="file"] {
  min-width: 0;
}

.admin-row-heading {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.admin-save {
  justify-self: start;
}

.admin-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.admin-side p,
.admin-note {
  color: var(--muted);
}

.upload-list {
  display: grid;
  gap: 10px;
}

.upload-list code,
.admin-note code {
  display: block;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--hot);
  background: rgba(0, 0, 0, 0.34);
  white-space: normal;
  word-break: break-all;
}

.form-status {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  margin: 0;
  border: 1px solid rgba(105, 255, 173, 0.32);
  border-radius: 6px;
  padding: 12px 14px;
  color: #bfffdc;
  background:
    linear-gradient(135deg, rgba(65, 228, 255, 0.08), rgba(40, 180, 99, 0.13)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 24px rgba(40, 180, 99, 0.1);
  font-weight: 800;
}

.form-status span {
  color: rgba(245, 240, 233, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}

.message-list,
.stat-list {
  display: grid;
  gap: 12px;
}

.admin-main-messages {
  border-bottom: 0;
  padding: 14px;
}

.message-list article,
.stat-list article {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.admin-main-messages article {
  gap: 8px;
  padding: 10px 12px;
}

.message-meta {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: baseline;
}

.message-meta strong,
.message-meta a,
.message-meta time {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-main-messages p {
  font-size: 0.92rem;
  line-height: 1.4;
}

.message-list a {
  color: var(--hot);
  word-break: break-all;
}

.message-list time,
.message-list p,
.stat-list span {
  margin: 0;
  color: var(--muted);
}

.admin-success,
.admin-error {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}

.admin-success {
  color: #bfffdc;
  background: rgba(40, 180, 99, 0.12);
}

.admin-error {
  color: #ffd0d0;
  background: rgba(255, 46, 46, 0.13);
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-panel {
    left: 18px;
    right: auto;
  }

  .split,
  .about-section,
  .contact-band,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .about-section .section-heading {
    position: static;
  }

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

  .player-shell {
    position: relative;
    top: auto;
  }

  .video-card.featured {
    grid-row: auto;
  }

  .admin-top,
  .admin-grid,
  .admin-fields.two,
  .admin-row.two-cols,
  .admin-row.three-cols,
  .admin-row.track-cols,
  .admin-row.video-cols,
  .admin-row.show-cols {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
  }

  .message-meta {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-copy small,
  .header-action {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding: 112px 18px 240px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.8rem);
  }

  .hero-panel {
    bottom: 28px;
  }

  .ticker {
    flex-wrap: wrap;
    white-space: normal;
    gap: 8px 14px;
  }

  .section,
  .contact-band {
    padding-block: 58px;
  }

  .now-playing,
  .show-list article {
    grid-template-columns: 1fr;
  }

  .now-playing {
    justify-items: center;
    text-align: center;
  }

  .cover {
    width: min(170px, 70%);
  }

  .player-controls,
  .player-stats {
    flex-wrap: wrap;
  }

  .show-list article {
    gap: 8px;
    min-height: 0;
    padding: 18px 0;
    align-items: start;
  }

  .show-list time {
    display: block;
    margin-bottom: 2px;
    line-height: 1;
  }

  .show-list div {
    gap: 2px;
  }

  .show-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 92px;
    margin-top: 4px;
    padding: 8px 12px;
  }

  .release-row {
    grid-template-columns: 1fr;
  }

  .track {
    grid-template-columns: 34px 1fr;
  }

  .track small {
    grid-column: 2;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
