/* ============================================================
   RADIO ALPINE — Barre Player Radio
   assets/css/player.css
   ============================================================ */

.player-bar {
  position: relative;
  z-index: 10;
  background: var(--peak);
  border-top: 1px solid rgba(90, 143, 168, 0.25);
  border-bottom: 1px solid rgba(90, 143, 168, 0.15);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ── Info piste en cours ── */
.player-now {
  flex: 1;
  min-width: 200px;
}

.player-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--glacier);
}

.player-track {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 0.15rem;
}

.player-artist {
  font-size: 0.8rem;
  color: var(--storm);
}

/* ── Contrôles ── */
.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--glacier);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal), transform var(--transition-fast);
  color: var(--white);
  font-size: 1.3rem;
}

.btn-play:hover {
  background: var(--ice);
  transform: scale(1.05);
}

/* ── Volume ── */
.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--storm);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px; height: 3px;
  background: rgba(90, 143, 168, 0.4);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--glacier);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--glacier);
  cursor: pointer;
  border: none;
}

/* ── Fréquence FM ── */
.player-freq {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.85;
}

.player-freq small {
  font-size: 1rem;
  color: var(--storm);
}
