/* ==================== ESTILO: DEFAULT ==================== */
/* El diseño original permanece sin cambios en player-widget.css */

/* ==================== ESTILO: AZUL (Cambio de color) ==================== */
[data-player-style="blue"] .ap-player {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
}

[data-player-style="blue"] .ap-title {
  color: #ffffff;
}

[data-player-style="blue"] .ap-artist {
  color: rgba(255, 255, 255, 0.85);
}

[data-player-style="blue"] .ap-progress-fill {
  background: #4fc3f7;
}

[data-player-style="blue"] .ap-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

[data-player-style="blue"] .ap-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

[data-player-style="blue"] .ap-time {
  color: rgba(255, 255, 255, 0.75);
}

[data-player-style="blue"] .ap-playlist-item {
  color: rgba(255, 255, 255, 0.9);
}

[data-player-style="blue"] .ap-playlist-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-player-style="blue"] .ap-playlist-item.active {
  background: rgba(255, 255, 255, 0.2);
}

/* ==================== ESTILO: SIN PORTADA ==================== */
[data-player-style="no-cover"] .ap-cover-container {
  display: none !important;
}

[data-player-style="no-cover"] .ap-cover {
  display: none !important;
}

[data-player-style="no-cover"] .ap-cover-overlay {
  display: none !important;
}

/* ==================== ESTILO: SIN SCROLL ==================== */
[data-player-style="no-scroll"] .ap-playlist-container {
  max-height: none !important;
  overflow: visible !important;
}

[data-player-style="no-scroll"] .ap-playlist {
  max-height: none !important;
  overflow: visible !important;
}

/* ==================== ESTILO: SIN SCROLL Y SIN PORTADA ==================== */
[data-player-style="clean"] .ap-cover-container {
  display: none !important;
}

[data-player-style="clean"] .ap-cover {
  display: none !important;
}

[data-player-style="clean"] .ap-cover-overlay {
  display: none !important;
}

[data-player-style="clean"] .ap-playlist-container {
  max-height: none !important;
  overflow: visible !important;
}

[data-player-style="clean"] .ap-playlist {
  max-height: none !important;
  overflow: visible !important;
}

/* ==================== ESTILO: HOVER PLAY ==================== */
[data-player-style="hover-play"] .ap-cover-container {
  display: none !important;
}

[data-player-style="hover-play"] .ap-cover-overlay {
  display: none !important;
}

[data-player-style="hover-play"] .ap-playlist-container {
  max-height: none !important;
  overflow: visible !important;
}

[data-player-style="hover-play"] .ap-playlist {
  max-height: none !important;
  overflow: visible !important;
}

[data-player-style="hover-play"] .ap-playlist-item {
  position: relative;
}

[data-player-style="hover-play"] .ap-playlist-item .ap-playlist-cover {
  position: relative;
}

[data-player-style="hover-play"] .ap-playlist-item .ap-playlist-cover::before {
  content: '\f04b';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  pointer-events: none;
}

[data-player-style="hover-play"] .ap-playlist-item:hover .ap-playlist-cover::before {
  opacity: 1;
}

[data-player-style="hover-play"] .ap-playlist-item.active .ap-playlist-cover::before {
  content: '\f04c';
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}
