/* =============================================================================
   DMV SIGNAL RADIO — Sticky inline player bar
   Persistent audio bar at the bottom of every page.
   ============================================================================= */

/* ── Body spacer so content isn't hidden behind the fixed bar ── */
body {
  padding-bottom: 72px;
}

/* ── Radio bar container ── */
#dmv-radio-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink, #141412);
  border-top: 1px solid rgba(242, 237, 226, 0.12);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  font-family: 'DM Sans', sans-serif;
  color: var(--paper, #F2EDE2);
  font-size: 13px;
  line-height: 1.4;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#dmv-radio-bar.dmv-radio-visible {
  transform: translateY(0);
}

/* ── Hidden YouTube player ── */
#dmv-radio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.01;
  pointer-events: none;
}

/* ── Inner layout ── */
.dmv-radio-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 72px;
}

/* ── Transport controls ── */
.dmv-radio-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dmv-radio-btn {
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.2);
  color: var(--paper, #F2EDE2);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  padding: 0;
  line-height: 1;
}

.dmv-radio-btn:hover {
  background: var(--red, #D72638);
  border-color: var(--red, #D72638);
  transform: translateY(-1px);
}

.dmv-radio-btn:active {
  transform: translateY(0);
}

.dmv-radio-btn.dmv-radio-play-btn {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background: var(--red, #D72638);
  border-color: var(--red, #D72638);
}

.dmv-radio-btn.dmv-radio-play-btn:hover {
  background: var(--gold, #E8A33D);
  border-color: var(--gold, #E8A33D);
  color: var(--ink, #141412);
}

.dmv-radio-btn.dmv-radio-active {
  background: var(--gold, #E8A33D);
  border-color: var(--gold, #E8A33D);
  color: var(--ink, #141412);
}

/* ── Track info area ── */
.dmv-radio-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.dmv-radio-cover {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(242, 237, 226, 0.08);
}

.dmv-radio-meta {
  min-width: 0;
  overflow: hidden;
}

.dmv-radio-title {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dmv-radio-artist {
  font-size: 11px;
  color: rgba(242, 237, 226, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Progress area ── */
.dmv-radio-progress-area {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.dmv-radio-time {
  font-size: 11px;
  color: rgba(242, 237, 226, 0.5);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 36px;
}

.dmv-radio-progress-track {
  position: relative;
  flex: 1;
  height: 4px;
  background: rgba(242, 237, 226, 0.1);
  border-radius: 2px;
  cursor: pointer;
  transition: height 0.15s;
}

.dmv-radio-progress-track:hover {
  height: 6px;
}

.dmv-radio-progress-fill {
  height: 100%;
  background: var(--red, #D72638);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}

.dmv-radio-progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 10px;
  height: 10px;
  background: var(--paper, #F2EDE2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s;
}

.dmv-radio-progress-track:hover .dmv-radio-progress-fill::after {
  opacity: 1;
}

/* ── Region filter pills ── */
.dmv-radio-filters {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dmv-radio-filter-btn {
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.15);
  color: rgba(242, 237, 226, 0.4);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

.dmv-radio-filter-btn:hover {
  color: var(--paper, #F2EDE2);
  border-color: rgba(242, 237, 226, 0.3);
  background: rgba(242, 237, 226, 0.05);
}

.dmv-radio-filter-btn.dmv-radio-filter-active {
  color: var(--ink, #141412);
  background: var(--gold, #E8A33D);
  border-color: var(--gold, #E8A33D);
}

.dmv-radio-filter-btn.dmv-radio-filter-active:hover {
  background: var(--red, #D72638);
  border-color: var(--red, #D72638);
  color: var(--paper, #F2EDE2);
}

.dmv-radio-right .dmv-radio-shuffle-btn {
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.2);
  color: rgba(242, 237, 226, 0.4);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 12px;
  border-radius: 4px;
  transition: all 0.2s;
  padding: 0;
}

.dmv-radio-right .dmv-radio-shuffle-btn:hover {
  color: var(--paper, #F2EDE2);
  border-color: rgba(242, 237, 226, 0.4);
}

.dmv-radio-right .dmv-radio-shuffle-btn.dmv-radio-active {
  color: var(--gold, #E8A33D);
  border-color: var(--gold, #E8A33D);
}

/* ── Right area (volume + labels) ── */
.dmv-radio-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dmv-radio-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.35);
  font-weight: 600;
  white-space: nowrap;
}

.dmv-radio-volume-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dmv-radio-volume-btn {
  background: transparent;
  border: none;
  color: rgba(242, 237, 226, 0.5);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
}

.dmv-radio-volume-btn:hover {
  color: var(--paper, #F2EDE2);
}

.dmv-radio-volume-slider {
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(242, 237, 226, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.dmv-radio-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold, #E8A33D);
  cursor: pointer;
}

.dmv-radio-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold, #E8A33D);
  cursor: pointer;
  border: none;
}

/* ── Watch button (streaming lounge link) ── */
.dmv-radio-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.15);
  color: rgba(242, 237, 226, 0.5);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
  white-space: nowrap;
}

.dmv-radio-watch-btn:hover {
  color: var(--paper, #F2EDE2);
  border-color: var(--gold, #E8A33D);
  background: rgba(232, 163, 61, 0.1);
  transform: translateY(-1px);
}

.dmv-radio-watch-btn:active {
  transform: translateY(0);
}

.dmv-radio-watch-icon {
  font-size: 8px;
}

.dmv-radio-watch-btn[href="#"] {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Send to Lounge button (injected on release theater pages) ── */
.dmv-lounge-btn.action-link {
  background: rgba(215, 38, 56, 0.15) !important;
  border-color: rgba(215, 38, 56, 0.3) !important;
  color: var(--red, #D72638) !important;
  cursor: pointer !important;
}

.dmv-lounge-btn.action-link::before {
  content: '♪';
  margin-right: 6px;
  font-size: 14px;
}

.dmv-lounge-btn.action-link:hover {
  background: var(--red, #D72638) !important;
  border-color: var(--red, #D72638) !important;
  color: var(--paper, #F2EDE2) !important;
}

/* ── Artist profile lounge banner — injected on artist pages ── */
.dmv-artist-lounge-banner {
  display: none;
  background: var(--ink, #141412);
  border-left: 3px solid var(--gold, #E8A33D);
  border-bottom: 1px solid rgba(242, 237, 226, 0.08);
  margin-bottom: 0;
}
.dmv-artist-lounge-banner.dmv-artist-lounge-visible {
  display: block;
}
.dmv-artist-lounge-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 12px;
  color: rgba(242, 237, 226, 0.7);
  font-family: 'DM Sans', sans-serif;
}
.dmv-artist-lounge-banner-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: var(--gold, #E8A33D);
  animation: dmv-np-pulse 1.4s ease-in-out infinite;
}
.dmv-artist-lounge-banner-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dmv-artist-lounge-banner-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #E8A33D);
  white-space: nowrap;
}
.dmv-artist-lounge-banner-label strong {
  font-weight: 700;
}
.dmv-artist-lounge-banner-track {
  font-size: 12px;
  color: var(--paper, #F2EDE2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmv-artist-lounge-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold, #E8A33D);
  color: var(--ink, #141412);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.dmv-artist-lounge-banner-link:hover {
  background: var(--paper, #F2EDE2);
}
.dmv-artist-lounge-banner-link::before {
  content: '\266B';
  font-size: 12px;
}

/* ── Artist lounge 'Next by Artist' button ── */
.dmv-artist-lounge-next-btn {
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.15);
  color: rgba(242, 237, 226, 0.5);
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.dmv-artist-lounge-next-btn:hover {
  color: var(--paper, #F2EDE2);
  border-color: var(--gold, #E8A33D);
  background: rgba(232, 163, 61, 0.1);
}

/* ── Release theater lounge bar — injected on release pages ── */
.dmv-release-lounge-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(242, 237, 226, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.dmv-release-lounge-bar.dmv-release-lounge-visible {
  max-height: 400px;
}
.dmv-release-lounge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: rgba(242, 237, 226, 0.7);
  font-family: 'DM Sans', sans-serif;
}
.dmv-release-lounge-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #E8A33D);
  white-space: nowrap;
}
.dmv-release-lounge-label strong {
  font-weight: 700;
}
.dmv-release-lounge-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: var(--paper, #F2EDE2);
}
.dmv-release-lounge-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold, #E8A33D);
  color: var(--ink, #141412);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.dmv-release-lounge-link:hover {
  background: var(--paper, #F2EDE2);
}
.dmv-release-lounge-link::before {
  content: '\266B';
  font-size: 12px;
}

/* ── Release theater queue panel — injected on release pages ── */
.dmv-release-queue-panel {
  background: var(--paper-deep, #1A1A18);
  border: 1px solid var(--rule, rgba(242,237,226,0.1));
  margin-top: 48px;
  padding: 24px 28px;
}
.dmv-release-queue-inner {
  font-family: 'DM Sans', sans-serif;
}
.dmv-release-queue-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.dmv-release-queue-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #E8A33D);
}
.dmv-release-queue-count {
  font-size: 9px;
  color: rgba(242, 237, 226, 0.35);
  letter-spacing: 0.06em;
}
.dmv-release-queue-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dmv-release-queue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(242, 237, 226, 0.02);
  border: 1px solid rgba(242, 237, 226, 0.06);
  cursor: pointer;
  transition: all 0.2s;
}
.dmv-release-queue-item:hover {
  background: rgba(242, 237, 226, 0.06);
  border-color: rgba(242, 237, 226, 0.12);
}
.dmv-release-queue-item:active {
  background: rgba(232, 163, 61, 0.06);
}
.dmv-release-queue-item:focus-visible {
  outline: 2px solid var(--gold, #E8A33D);
  outline-offset: 2px;
}
.dmv-release-queue-item-cover {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(242, 237, 226, 0.08);
}
.dmv-release-queue-item-meta {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.dmv-release-queue-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--paper, #F2EDE2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmv-release-queue-item-artist {
  font-size: 11px;
  color: rgba(242, 237, 226, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmv-release-queue-item-region {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Queue item play button ── */
.dmv-release-queue-play-btn {
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.12);
  color: rgba(242, 237, 226, 0.4);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 10px;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: all 0.2s;
}
.dmv-release-queue-play-btn:hover {
  background: var(--gold, #E8A33D);
  border-color: var(--gold, #E8A33D);
  color: var(--ink, #141412);
  transform: scale(1.08);
}
.dmv-release-queue-play-btn:active {
  transform: scale(0.95);
}
/* ── Now-playing indicator (queue panel items) ── */

/* ── Now-playing indicator (queue panel items) ── */
.dmv-release-queue-item-now-playing {
  background: rgba(232, 163, 61, 0.06);
  border-left: 3px solid var(--gold, #E8A33D);
  cursor: default;
}
.dmv-release-queue-item-now-playing .dmv-release-queue-item-title {
  color: var(--gold, #E8A33D);
}
.dmv-np-indicator {
  display: inline;
  margin-right: 4px;
  animation: dmv-np-pulse 1.4s ease-in-out infinite;
}
@keyframes dmv-np-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.dmv-np-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #E8A33D);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Empty state ── */
.dmv-radio-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}

.dmv-radio-empty-icon {
  font-size: 20px;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }

  .dmv-radio-inner {
    padding: 8px 12px;
    height: 64px;
    gap: 10px;
  }

  .dmv-radio-controls {
    gap: 4px;
  }

  .dmv-radio-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .dmv-radio-btn.dmv-radio-play-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .dmv-radio-cover {
    width: 36px;
    height: 36px;
  }

  .dmv-radio-title {
    font-size: 12px;
  }

  .dmv-radio-artist {
    font-size: 10px;
  }

  .dmv-radio-progress-area {
    min-width: auto;
    flex: 1;
  }

  .dmv-radio-label {
    display: none;
  }

  .dmv-radio-volume-wrap {
    display: none;
  }

  .dmv-radio-shuffle-btn {
    display: none;
  }

  .dmv-radio-filters {
    display: none;
  }
}

@media (max-width: 480px) {
  .dmv-radio-track {
    gap: 8px;
  }

  .dmv-radio-cover {
    display: none;
  }

  .dmv-radio-right {
    gap: 6px;
  }
}

/* =============================================================================
   DMV SIGNAL RADIO — Now Playing badge
   Pulsing LIVE indicator shown on artist cards and profile pages
   when the radio is actively playing a track from that artist.
   ============================================================================= */

/* ── Badge pill ── */
.dmv-now-playing-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--red, #D72638);
  color: var(--paper, #F2EDE2);
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
  animation: dmv-now-pulse 1.8s ease-in-out infinite;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -1px;
}

/* ── Pulse animation ── */
@keyframes dmv-now-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(215, 38, 56, 0.5);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(215, 38, 56, 0);
  }
}

/* ── Live dot inside badge ── */
.dmv-now-playing-badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: dmv-now-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes dmv-now-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Artist profile queue panel — injected on artist pages ── */
.dmv-artist-queue-panel {
  background: var(--paper-deep, #1A1A18);
  border-top: 1px solid var(--rule, rgba(242,237,226,0.1));
  padding: 16px 24px 20px;
}
.dmv-artist-queue-inner {
  font-family: 'DM Sans', sans-serif;
}
.dmv-artist-queue-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.dmv-artist-queue-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #E8A33D);
}
.dmv-artist-queue-count {
  font-size: 9px;
  color: rgba(242, 237, 226, 0.35);
  letter-spacing: 0.06em;
}
.dmv-artist-queue-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dmv-artist-queue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(242, 237, 226, 0.02);
  border: 1px solid rgba(242, 237, 226, 0.06);
  cursor: pointer;
  transition: all 0.2s;
}
.dmv-artist-queue-item:hover {
  background: rgba(242, 237, 226, 0.06);
  border-color: rgba(242, 237, 226, 0.12);
}
.dmv-artist-queue-item:active {
  background: rgba(232, 163, 61, 0.06);
}
.dmv-artist-queue-item:focus-visible {
  outline: 2px solid var(--gold, #E8A33D);
  outline-offset: 2px;
}
.dmv-artist-queue-item-cover {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(242, 237, 226, 0.08);
}
.dmv-artist-queue-item-meta {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.dmv-artist-queue-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--paper, #F2EDE2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmv-artist-queue-item-artist {
  font-size: 11px;
  color: rgba(242, 237, 226, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmv-artist-queue-item-region {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Artist queue item — now-playing state ── */
.dmv-artist-queue-item-now-playing {
  background: rgba(232, 163, 61, 0.06);
  border-left: 3px solid var(--gold, #E8A33D);
  cursor: default;
}
.dmv-artist-queue-item-now-playing .dmv-artist-queue-item-title {
  color: var(--gold, #E8A33D);
}

/* ── Artist queue play button ── */
.dmv-artist-queue-play-btn {
  background: transparent;
  border: 1px solid rgba(242, 237, 226, 0.12);
  color: rgba(242, 237, 226, 0.4);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 10px;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: all 0.2s;
}
.dmv-artist-queue-play-btn:hover {
  background: var(--gold, #E8A33D);
  border-color: var(--gold, #E8A33D);
  color: var(--ink, #141412);
  transform: scale(1.08);
}
.dmv-artist-queue-play-btn:active {
  transform: scale(0.95);
}

/* ── Now-playing class for artist cards (roster page) ── */
.artist-card.dmv-now-playing {
  position: relative;
}

.artist-card.dmv-now-playing .dmv-now-playing-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  margin-left: 0;
}

/* ── Artist profile hero badge (appended inside h1) ── */
.profile-hero-inner h1 .dmv-now-playing-badge {
  margin-left: 12px;
  position: relative;
  top: -3px;
}
