/* Estilos para la lista Hot 100 */
.hot100-list {
  background: white;
  max-height: 670px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

/* Scrollbar personalizado */
.hot100-list::-webkit-scrollbar {
  width: 8px;
}

.hot100-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.hot100-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.hot100-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Item de la lista */
.chart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}

.chart-item:hover {
  background: #f9fafb;
}

/* Rank #1 especial */
.chart-item.rank-1 {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 100%);
  border-left: 4px solid #10b981;
  padding-left: 12px;
}

.chart-item.rank-1:hover {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 100%);
}

/* Número de ranking */
.chart-rank {
  min-width: 35px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #9ca3af;
  flex-shrink: 0;
}

.chart-item.rank-1 .chart-rank {
  color: #10b981;
  font-size: 28px;
}

/* Top 3 con colores especiales */
.chart-item:nth-child(2) .chart-rank {
  color: #f59e0b;
}

.chart-item:nth-child(3) .chart-rank {
  color: #6b7280;
}

/* Portada */
.chart-cover {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-item.rank-1 .chart-cover {
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.chart-cover-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-shrink: 0;
}

/* Info de la canción */
.chart-info {
  flex: 1;
  min-width: 0;
}

.chart-song {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.chart-item.rank-1 .chart-song {
  font-size: 16px;
  color: #10b981;
}

.chart-artist {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-item.rank-1 .chart-artist {
  font-size: 13px;
  color: #4b5563;
}

/* Indicador de movimiento - solo símbolo */
.chart-movement {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.movement-up {
  color: #10b981;
}

.movement-down {
  color: #ef4444;
}

.movement-same {
  color: #9ca3af;
}

.movement-new {
  color: #f59e0b;
}

/* Footer */
.hot100-footer {
  padding: 20px;
  text-align: center;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #10b981;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}

.view-all-btn:hover {
  background: #059669;
}
