/* ===========================================
    RADIO PLAYER – TIPO TUNEIN (CORREGIDO)
   =========================================== */

body {
  padding-bottom: 90px;
}

#radio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: #121212;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 99999;
  font-family: system-ui, -apple-system, sans-serif;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}

#radio-player > div {
  display: flex;
  align-items: center;
}

/* IZQUIERDA */
.player-left { gap: 12px; }
.player-left img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}
.station { font-size: 15px; font-weight: 600; display: block; }
.status { font-size: 14px; font-weight: 600; color: #ff0000; }

/* CENTRO: Controles */
.player-center {
  justify-content: center;
  flex: 1;
}

/* BOTÓN PLAY/PAUSE - FORZANDO TAMAÑO */
#playPause {
  width: 64px !important;  /* Tus 74px */
  height: 64px !important;
  min-width: 64px !important; 
  border: none !important;
  background: transparent !important; 
  cursor: pointer;
  transition: transform .2s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important; 
  
  /* --- LO QUE AÑADIMOS PARA ELIMINAR EL CUADRADO --- */
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* Limpieza para Firefox */
#playPause::-moz-focus-inner {
  border: 0 !important;
}
/* ------------------------------------------------- */

/* LA IMAGEN - FORZANDO EXPANSIÓN */
#playPause img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important; 
  max-height: none !important;
  object-fit: contain !important; 
  display: block !important;
}

#playPause:hover {
  transform: scale(1.1);
}

/* DERECHA */
.player-right { gap: 10px; }
#volume { width: 110px; height: 4px; cursor: pointer; accent-color: #1db954; }

/* RESPONSIVE */
@media (max-width: 768px) {
  #radio-player { height: 75px; }
  body { padding-bottom: 75px; }
  #playPause {
    width: 60px !important; 
    height: 60px !important;
    min-width: 60px !important;
  }
}