:root {
  --orange: #ff7600;
  --orange-soft: #ff9d42;
  --orange-deep: #cc5700;
  --ink: #000000;
  --ink-soft: #0b0b0b;
  --surface: rgba(14, 14, 14, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --paper: #f6e8df;
  --paper-soft: rgba(246, 232, 223, 0.76);
  --line: rgba(255, 118, 0, 0.22);
  --line-strong: rgba(255, 118, 0, 0.5);
  --shadow-xl: 0 28px 90px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Courier New", Courier, monospace;
  color: var(--paper);
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 118, 0, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 118, 0, 0.1), transparent 26%),
    linear-gradient(140deg, #030303 0%, #000000 48%, #090909 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

.page-noise,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
}

.page-glow {
  z-index: -1;
  filter: blur(90px);
}

.page-glow-left {
  background: rgba(255, 118, 0, 0.14);
  transform: translate(-36%, -20%);
}

.page-glow-right {
  background: rgba(255, 118, 0, 0.08);
  transform: translate(40%, 12%);
}

.site-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-pip {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 118, 0, 0.14);
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--paper-soft);
  font-size: 0.76rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246, 232, 223, 0.9);
  border: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(255, 118, 0, 0.1);
  outline: none;
}

.hero-panel,
.experience-panel {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.94), rgba(3, 3, 3, 0.96));
  box-shadow: var(--shadow-xl);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 38px;
  padding: 44px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-soft);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
}

.hero-copy h1,
.section-heading h2,
.signal-card h2,
.player-copy h3,
.queue-header h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.88;
}

.hero-copy h1 span {
  display: block;
}

.hero-description,
.signal-card p,
.about-band p,
.player-episode-description,
.site-footer p,
.queue-caption {
  color: rgba(246, 232, 223, 0.82);
  line-height: 1.68;
}

.hero-description {
  max-width: 56ch;
  margin: 22px 0 28px;
  font-size: 1.03rem;
}

.hero-actions,
.player-secondary-actions,
.transport-row,
.utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 28px;
}

.button,
.transport,
.text-action {
  border: 0;
  appearance: none;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.transport:hover,
.transport:focus-visible,
.text-action:hover,
.text-action:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--orange), #ffae67);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(255, 118, 0, 0.24);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 118, 0, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 118, 0, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div,
.playlist-meta div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 118, 0, 0.07);
  border: 1px solid rgba(255, 118, 0, 0.18);
}

.hero-stats dt,
.playlist-meta dt {
  margin-bottom: 8px;
  color: rgba(246, 232, 223, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats dd,
.playlist-meta dd {
  margin: 0;
  color: var(--paper);
  font-size: 1.02rem;
  word-break: break-word;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.logo-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(255, 118, 0, 0.16), rgba(255, 118, 0, 0)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 118, 0, 0.1) 0,
      rgba(255, 118, 0, 0.1) 12px,
      rgba(255, 118, 0, 0.04) 12px,
      rgba(255, 118, 0, 0.04) 24px
    );
  border: 1px solid rgba(255, 118, 0, 0.22);
  overflow: hidden;
}

.logo-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 118, 0, 0.24);
}

.logo-ring-one {
  width: 330px;
  height: 330px;
  transform: rotate(16deg);
}

.logo-ring-two {
  width: 440px;
  height: 440px;
  transform: rotate(-14deg);
}

.logo-frame {
  position: relative;
  width: min(88%, 420px);
  padding: 18px;
  background: #090909;
  border-radius: 28px;
  border: 1px solid rgba(255, 118, 0, 0.25);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 118, 0, 0.18);
  transform: rotate(-3deg);
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 118, 0, 0.16);
  border-radius: 20px;
  pointer-events: none;
}

.logo-frame img {
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.signal-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 238, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.signal-title {
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.signal-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.06;
}

.signal-card p {
  color: rgba(0, 0, 0, 0.74);
}

.about-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  margin: 22px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 118, 0, 0.08);
}

.band-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.about-band p {
  margin: 0;
}

.experience-panel {
  margin-top: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.player-surface,
.queue-surface {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 118, 0, 0.08), rgba(255, 118, 0, 0.015)),
    rgba(255, 255, 255, 0.025);
}

.player-surface {
  padding: 24px;
}

.player-surface-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.player-surface-top h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.autoplay-chip {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 118, 0, 0.1);
  color: var(--orange-soft);
  border: 1px solid rgba(255, 118, 0, 0.22);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.player-main {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.player-art-shell {
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 118, 0, 0.24), transparent 36%),
    rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 118, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 118, 0, 0.12);
}

.player-art-shell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.player-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.player-status,
.player-sequence,
.player-episode-meta {
  margin: 0;
  color: rgba(246, 232, 223, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.player-copy h3 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.02;
}

.player-episode-description {
  margin: 0;
  max-width: 54ch;
}

.player-secondary-actions {
  margin-top: 6px;
}

.control-rack {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 118, 0, 0.14);
}

.transport-row {
  align-items: center;
  justify-content: center;
}

.transport {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

.transport:disabled,
.text-action:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.transport-primary {
  min-width: 160px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--orange), #ffb26f);
  border: 0;
}

.transport-secondary {
  color: var(--paper);
  background: rgba(255, 118, 0, 0.08);
  border: 1px solid rgba(255, 118, 0, 0.24);
}

.progress-cluster {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 12px;
  align-items: center;
}

.progress-cluster span {
  font-size: 0.82rem;
  color: rgba(246, 232, 223, 0.72);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.utility-row {
  justify-content: space-between;
  align-items: center;
}

.volume-control {
  display: inline-grid;
  gap: 8px;
  color: rgba(246, 232, 223, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volume-control input {
  width: min(240px, 68vw);
}

.text-action {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 118, 0, 0.16);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.queue-surface {
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  padding: 24px;
}

.queue-header {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.queue-header h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.queue-caption {
  margin: 0;
  color: rgba(246, 232, 223, 0.68);
}

.search-shell {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(246, 232, 223, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-shell input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 118, 0, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}

.search-shell input::placeholder {
  color: rgba(246, 232, 223, 0.42);
}

.search-shell input:focus-visible {
  outline: 1px solid rgba(255, 118, 0, 0.44);
  border-color: rgba(255, 118, 0, 0.44);
}

.playlist-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.playlist-scroll {
  max-height: 760px;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-width: thin;
}

.playlist-scroll::-webkit-scrollbar {
  width: 10px;
}

.playlist-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 118, 0, 0.28);
  border-radius: 999px;
}

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

.playlist-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 118, 0, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
  text-align: left;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.playlist-item:hover,
.playlist-item:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 118, 0, 0.08);
  border-color: rgba(255, 118, 0, 0.26);
  outline: none;
}

.playlist-item.is-active {
  background:
    linear-gradient(135deg, rgba(255, 118, 0, 0.18), rgba(255, 118, 0, 0.04)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 118, 0, 0.36);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.playlist-order {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 118, 0, 0.1);
  color: var(--orange-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.playlist-item.is-active .playlist-order {
  background: linear-gradient(135deg, var(--orange), #ffb26f);
  color: var(--ink);
}

.playlist-text {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.playlist-title {
  font-size: 0.98rem;
  line-height: 1.32;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-subtitle {
  color: rgba(246, 232, 223, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.playlist-state {
  color: rgba(246, 232, 223, 0.6);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.playlist-item.is-active .playlist-state {
  color: var(--orange-soft);
}

.empty-copy {
  margin: 0;
  color: rgba(246, 232, 223, 0.7);
}

.site-footer {
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer a {
  color: var(--orange-soft);
}

@media (max-width: 1040px) {
  .hero-panel,
  .stream-layout,
  .player-main {
    grid-template-columns: 1fr;
  }

  .queue-surface {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 28px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

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

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 1280px);
    padding-top: 18px;
  }

  .site-header,
  .hero-panel,
  .about-band,
  .experience-panel,
  .player-surface,
  .queue-surface {
    padding: 22px;
  }

  .site-header,
  .about-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .player-secondary-actions,
  .transport-row,
  .utility-row {
    display: grid;
  }

  .hero-stats,
  .playlist-meta {
    grid-template-columns: 1fr;
  }

  .logo-stage {
    min-height: 320px;
  }

  .player-surface-top {
    display: grid;
  }

  .player-art-shell {
    max-width: 320px;
    margin: 0 auto;
  }

  .player-copy h3 {
    font-size: clamp(1.5rem, 8vw, 2.3rem);
  }

  .player-main,
  .progress-cluster {
    grid-template-columns: 1fr;
  }

  .progress-cluster {
    gap: 8px;
  }

  .progress-cluster span:last-child {
    text-align: right;
  }

  .playlist-scroll {
    max-height: none;
  }

  .playlist-item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .playlist-state {
    grid-column: 2;
  }

  .playlist-title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .volume-control {
    width: 100%;
  }

  .volume-control input {
    width: 100%;
  }
}
