.album-player {
  max-width: 520px;
  margin: 80px auto;
  padding: 24px;
  background: #1b1e21;
  border-radius: 10px;
  color: #d2d5d8;
  font-family: inherit;
}

.album-player-header {
  text-align: center;
  margin-bottom: 18px;
}

.album-title {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.album-subtitle {
  font-size: 12px;
  color: #9aa0a6;
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 20px 0;
}

.player-controls button {
  background: none;
  border: none;
  font-size: 18px;
  color: #d2d5d8;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.player-controls button:hover {
  opacity: 0.6;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

#progressBar {
  flex: 1;
  appearance: none;
  height: 2px;
  background: #444;
  cursor: pointer;
}

#progressBar::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: #d2d5d8;
  border-radius: 50%;
}

.track-info {
  text-align: center;
  margin: 14px 0;
  font-size: 14px;
}

.playlist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.playlist li {
  padding: 6px 0;
  font-size: 13px;
  color: #9aa0a6;
  cursor: pointer;
}

.playlist li.active {
  color: #ffffff;
}
