/* ==================================================
   STICKY PLAYER
================================================== */
#cs-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  z-index: 9999;
  backdrop-filter: blur(14px);
  background: rgba(20, 20, 20, 0.75);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
}

.cs-player-left {
  flex: 1;
  min-width: 0;
}

#cs-track-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
}

.cs-player-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-player-center button {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cs-player-center button:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}

#cs-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, #f5b301, #ff8c42);
  color: #120a1f;
  font-size: 16px;
  font-weight: bold;
}

#cs-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(245,179,1,0.5);
}

#cs-prev,
#cs-next {
  background: transparent;
  color: #bbbbbb;
  font-size: 18px;
}

#cs-prev:hover,
#cs-next:hover {
  color: #f5b301;
}

@media (max-width: 768px) {
  #cs-sticky-player {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
  }

  .cs-player-left { text-align: center; order: 1; }
  .cs-player-center { justify-content: center; order: 2; }
  .cs-player-right { text-align: center; order: 3; font-size: 11px; }
}