:root {
  --ink: #111416;
  --panel: #181d20;
  --muted: #b7c0c7;
  --line: rgba(255, 255, 255, 0.14);
  --acid: #bbf247;
  --pink: #f05a8b;
  --blue: #42b8d8;
  --paper: #f4f6ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(17, 20, 22, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--acid);
  border-radius: 8px;
  color: var(--acid);
  font-size: 0.78rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

nav a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

nav a[aria-current="page"] {
  background: rgba(187, 242, 71, 0.14);
  color: var(--acid);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(187, 242, 71, 0.12), transparent 36%),
    linear-gradient(235deg, rgba(240, 90, 139, 0.16), transparent 36%),
    #111416;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 0.90rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.lede,
.listen-panel p,
.contact-section p,
.show-grid p {
  color: var(--muted);
}

.lede {
  max-width: 650px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.actions,
.contact-section,
.listen-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 950;
}

.primary {
  background: var(--acid);
  color: var(--ink);
}

.primary:hover {
  background: #d4ff75;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--white);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  justify-self: end;
}

.slides {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151a1d;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide img {
  width: min(100%, 500px);
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.28));
}

.slide div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 16, 18, 0.86);
}

.slide span {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.slide h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 4vw, 2.5rem);
}

.slide p {
  margin: 0;
  color: var(--muted);
}

.slide-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slide-controls button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.slide-controls button.is-active,
.slide-controls button:hover {
  background: var(--acid);
  color: var(--ink);
}

.welcome-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f05a8b;
  color: var(--white);
  text-align: center;
}

.welcome-strip strong {
  color: var(--ink);
  font-weight: 950;
}

.listen-panel,
.music-directory-section,
.section,
.schedule-section,
.contact-section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.listen-panel {
  justify-content: space-between;
  background: var(--paper);
  color: var(--ink);
}

.listen-panel > div:first-child {
  max-width: 650px;
}

.listen-copy {
  position: relative;
}

.on-air-motion {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 16px;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 20, 22, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 20, 22, 0.08);
}

.equalizer span {
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: var(--pink);
  animation: equalizer-bounce 780ms ease-in-out infinite alternate;
}

.equalizer span:nth-child(2) {
  height: 46px;
  background: var(--blue);
  animation-delay: 120ms;
}

.equalizer span:nth-child(3) {
  height: 34px;
  background: var(--acid);
  animation-delay: 240ms;
}

.equalizer span:nth-child(4) {
  height: 54px;
  background: var(--pink);
  animation-delay: 80ms;
}

.equalizer span:nth-child(5) {
  height: 24px;
  background: var(--blue);
  animation-delay: 190ms;
}

.signal-lines {
  display: grid;
  gap: 7px;
  min-width: 180px;
}

.signal-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acid), var(--blue), var(--pink));
  transform-origin: left center;
  animation: signal-sweep 1.6s ease-in-out infinite;
}

.signal-lines span:nth-child(2) {
  width: 82%;
  animation-delay: 180ms;
}

.signal-lines span:nth-child(3) {
  width: 64%;
  animation-delay: 360ms;
}

.listen-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listen-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(17, 20, 22, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: #4f5d67;
  font-size: 0.84rem;
  font-weight: 900;
}

@keyframes equalizer-bounce {
  to {
    transform: scaleY(0.42);
  }
}

@keyframes signal-sweep {
  0%,
  100% {
    opacity: 0.52;
    transform: scaleX(0.7);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.listen-panel .eyebrow,
.schedule-section .eyebrow {
  color: #43720f;
}

.player {
  width: min(100%, 520px);
  padding: 18px;
  border: 1px solid rgba(13, 16, 18, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 20, 22, 0.12);
}

.vinyl-deck {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: 4px 0 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(66, 184, 216, 0.18), transparent 42%),
    linear-gradient(225deg, rgba(240, 90, 139, 0.18), transparent 42%),
    #151a1d;
}

.vinyl-record {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--acid) 0 14%, #151a1d 14% 18%, transparent 18%),
    repeating-radial-gradient(circle at center, #080a0b 0 7px, #171d20 8px 10px);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.38),
    inset 0 0 0 12px rgba(255, 255, 255, 0.03);
  animation: vinyl-spin 4.8s linear infinite;
}

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

.vinyl-record span {
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(17, 20, 22, 0.18);
}

.tonearm {
  position: absolute;
  top: 38px;
  right: 86px;
  width: 86px;
  height: 11px;
  border-radius: 999px;
  background: #dbe5ea;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transform: rotate(31deg);
  transform-origin: right center;
}

.tonearm::before,
.tonearm::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.tonearm::before {
  right: -18px;
  top: -12px;
  width: 34px;
  aspect-ratio: 1;
  background: var(--pink);
  border: 5px solid #f7fbff;
}

.tonearm::after {
  left: -8px;
  top: 4px;
  width: 18px;
  height: 8px;
  border-radius: 2px;
  background: var(--acid);
  transform: rotate(18deg);
}

@keyframes vinyl-spin {
  to {
    transform: rotate(360deg);
  }
}

.now-playing {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 20, 22, 0.12);
}

.now-playing div {
  display: grid;
  grid-template-columns: minmax(96px, 130px) 1fr;
  gap: 12px;
  align-items: baseline;
}

.now-playing span {
  color: #66717a;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.now-playing strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.now-playing p {
  margin: 4px 0 0;
  color: #4f5d67;
  font-size: 0.92rem;
  font-weight: 750;
}

.music-directory-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  background: #15191c;
}

.music-directory-copy {
  max-width: 980px;
}

.music-directory-copy p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.royalty-free-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.resource-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.resource-card img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 0.84;
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
}

.resource-card a {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 950;
}

.resource-card a:hover {
  color: var(--acid);
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(240, 90, 139, 0.16);
}

.chat-page {
  min-height: calc(100vh - 72px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(240, 90, 139, 0.14), transparent 34%),
    #111416;
}

.schedule-page {
  min-height: calc(100vh - 72px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(66, 184, 216, 0.14), transparent 34%),
    linear-gradient(235deg, rgba(240, 90, 139, 0.12), transparent 34%),
    #111416;
}

.schedule-page .section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.schedule-page .schedule-card {
  background: var(--white);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
  gap: 18px;
}

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

.schedule-notes {
  color: var(--white);
}

.chat-page .section-heading p:last-child {
  color: var(--muted);
}

.auth-panel {
  display: grid;
  gap: 18px;
  max-width: 560px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.auth-tab.is-active {
  background: var(--acid);
  color: var(--ink);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
  color: var(--white);
  font: inherit;
}

.auth-form input:focus {
  border-color: var(--acid);
  outline: 2px solid rgba(187, 242, 71, 0.2);
}

.auth-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-login-note {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(187, 242, 71, 0.2);
  border-radius: 8px;
  background: rgba(187, 242, 71, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-login-note strong {
  color: var(--acid);
}

.is-hidden {
  display: none !important;
}

.chat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
  gap: 18px;
  width: 100%;
}

.chat-room {
  display: grid;
  gap: 16px;
  width: 100%;
  min-height: 720px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.chat-toolbar,
.chat-form {
  display: flex;
  align-items: end;
  gap: 12px;
}

.chat-toolbar {
  justify-content: space-between;
  align-items: center;
}

.room-count {
  justify-self: center;
  color: var(--muted);
  font-weight: 850;
}

.chat-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(240, 90, 139, 0.28);
  border-radius: 8px;
  background: rgba(240, 90, 139, 0.1);
}

.admin-panel-title {
  display: block;
  margin-bottom: 4px;
  color: var(--pink);
  font-weight: 950;
  text-transform: uppercase;
}

.admin-panel p {
  margin: 0;
  color: var(--muted);
}

.ban-form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.ban-form label {
  display: grid;
  flex: 1;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.ban-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
  color: var(--white);
  font: inherit;
}

.banned-users {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.banned-user,
.empty-ban-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.banned-user button {
  min-height: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 950;
}

.chat-room .live-dot {
  margin-bottom: 0;
  color: var(--white);
}

.ghost-button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  height: clamp(380px, 52vh, 620px);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
}

.chat-message {
  display: grid;
  gap: 4px;
  max-width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.chat-message.is-station {
  border: 1px solid rgba(187, 242, 71, 0.26);
  background: rgba(187, 242, 71, 0.12);
}

.chat-message.is-admin {
  border: 1px solid rgba(240, 90, 139, 0.42);
  background: rgba(240, 90, 139, 0.14);
}

.chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.chat-meta strong {
  color: var(--acid);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-message p {
  margin: 0;
  overflow-wrap: anywhere;
}

.message-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.mini-button {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-button:hover {
  border-color: var(--acid);
}

.mini-button.danger {
  border-color: rgba(240, 90, 139, 0.38);
  color: var(--pink);
}

.emoji-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
}

.emoji-box > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(40px, 1fr));
  gap: 8px;
}

.emoji-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.35rem;
}

.emoji-grid button:hover,
.emoji-grid button:focus {
  border-color: var(--acid);
  outline: 2px solid rgba(187, 242, 71, 0.2);
}

.chat-form label {
  display: grid;
  flex: 1;
  gap: 6px;
  min-width: 160px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.message-count {
  justify-self: end;
  color: var(--muted);
  font-size: 0.78rem;
}

.message-count.is-near-limit {
  color: var(--pink);
}

.updates-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.updates-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

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

.update-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.update-card.is-live {
  border-color: rgba(187, 242, 71, 0.32);
  background: rgba(187, 242, 71, 0.11);
}

.update-card span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.update-card.is-live span {
  color: var(--acid);
}

.update-card h3 {
  margin-bottom: 0;
}

.update-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.chat-form input,
.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1012;
  color: var(--white);
  font: inherit;
}

.chat-form input:focus,
.auth-form input:focus {
  border-color: var(--acid);
  outline: 2px solid rgba(187, 242, 71, 0.2);
}

audio {
  display: block;
  width: 100%;
}

.section-heading {
  max-width: 1310px;
  margin-bottom: 28px;
}

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

.show-grid article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.show-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(187, 242, 71, 0.1), transparent 42%),
    #0d1012;
}

.show-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
}

.show-grid h3 {
  margin-bottom: 10px;
}

.show-grid strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(66, 184, 216, 0.14);
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 950;
}

.schedule-section {
  background:
    linear-gradient(135deg, rgba(66, 184, 216, 0.12), transparent 36%),
    #e9eef4;
  color: var(--ink);
}

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

.schedule-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 20, 22, 0.1);
}

.schedule-art {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(187, 242, 71, 0.18), transparent 42%),
    linear-gradient(225deg, rgba(240, 90, 139, 0.2), transparent 42%),
    #151a1d;
}

.schedule-art img {
  width: min(100%, 250px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.32));
}

.schedule-art span {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-card-copy {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.schedule-card-copy > span {
  color: #43720f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-card-copy h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.schedule-card-copy p {
  margin: 0;
  color: #4f5d67;
}

.schedule-card-copy strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(66, 184, 216, 0.14);
  color: #245c6c;
  font-size: 0.82rem;
}

.contact-section {
  justify-content: space-between;
  background:
    linear-gradient(90deg, rgba(66, 184, 216, 0.18), transparent),
    #15191c;
}

.contact-section div {
  max-width: 720px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-self: start;
  }

  .hero-slideshow {
    justify-self: start;
    max-width: 100%;
  }

  .slides {
    min-height: 520px;
  }

  .show-grid {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-list {
    grid-template-columns: 1fr;
  }

  .music-directory-section {
    grid-template-columns: 1fr;
  }

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

  .chat-layout {
    grid-template-columns: 1fr;
  }

  .schedule-layout,
  .schedule-layout .schedule-list {
    grid-template-columns: 1fr;
  }

  .updates-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.5rem);
    line-height: 1;
  }

  .slides {
    min-height: 500px;
  }

  .vinyl-deck {
    min-height: 170px;
  }

  .on-air-motion {
    align-items: stretch;
    flex-direction: column;
  }

  .signal-lines {
    min-width: 0;
  }

  .tonearm {
    right: 54px;
  }

  .slide {
    padding: 14px;
  }

  .button,
  .actions,
  .chat-form .button,
  .contact-section .button {
    width: 100%;
  }

  .chat-toolbar,
  .chat-form,
  .ban-form {
    align-items: stretch;
    flex-direction: column;
  }

  .room-count {
    justify-self: start;
  }

  .chat-tools {
    justify-content: stretch;
  }

  .chat-tools .ghost-button {
    width: 100%;
  }

  .chat-room {
    min-height: auto;
  }

  .chat-messages {
    height: min(56vh, 460px);
    min-height: 320px;
  }

  .emoji-grid {
    grid-template-columns: repeat(4, minmax(40px, 1fr));
  }

  .show-grid,
  .royalty-free-box,
  .now-playing div {
    grid-template-columns: 1fr;
  }

  .show-grid article {
    min-height: auto;
  }

  .show-grid span {
    margin-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl-record,
  .equalizer span,
  .signal-lines span {
    animation: none;
  }
}
