/* ── Radio Player ── */
.radio-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-dim);
  min-width: 0;
}

.radio-player-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s, color 0.15s;
}
.radio-player-btn:hover {
  border-color: var(--accent);
  color: var(--text-head);
}
.radio-player-btn svg { width: 14px; height: 14px; fill: currentColor; }

.radio-player-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.radio-player-title {
  color: var(--text-head);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
  line-height: 1.3;
}

.radio-player-artist {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.radio-player-time {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.radio-player-listeners {
  flex-shrink: 0;
  color: var(--accent-dim);
}

.radio-player-bar {
  flex-shrink: 0;
  width: 60px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.radio-player-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 1s linear;
}
