/* === BASIC PAGE STYLES === */
body {
  background-color: #121212;
  color: #fff;
  font-family: 'Helvetica', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.top-bar {
  background: #000;
  color: #1DB954;
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
}

.container {
  padding: 20px;
}

/* === ALBUM ART & TEXT === */
.album-art {
  width: 80%;
  max-width: 300px;
  margin: 20px 0;
  border-radius: 8px;
}

.now-playing {
  font-size: 14px;
  color: #bbb;
}

.song-title {
  font-size: 20px;
  font-weight: bold;
  margin: 4px 0;
}

.artist-name {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

/* === INFO BOXES === */
.lyrics, .credits, .live-events {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 30px auto;
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
}

h3 {
  color: #1DB954;
  margin-bottom: 10px;
}

.footer {
  margin-top: 30px;
  font-size: 14px;
  color: #1DB954;
}

/* === PROGRESS BAR === */
.player-bar {
  margin-top: 30px;
  text-align: center;
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.progress-bar {
  -webkit-appearance: none;
  width: 60%;
  height: 4px;
  background: #555;
  border-radius: 10px;
  outline: none;
}

.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.time {
  font-size: 12px;
  color: #aaa;
}

/* === MAIN CONTROLS (TRIANGLES & CIRCLE) === */
.main-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
}

.circle-btn {
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.circle-btn.medium {
  width: 60px;
  height: 60px;
  background-color: #121212;
  font-size: 26px;
}

.circle-btn.big {
  width: 80px;
  height: 80px;
  background-color: white;
  font-size: 32px;
}

.circle-btn.medium i {
  color: white;
}

.circle-btn.big i {
  color: black;
}

.circle-btn:hover {
  transform: scale(1.05);
}

/* === EXTRA CONTROLS & ICONS === */
.secondary-controls,
.extra-controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 10px 0;
  font-size: 20px;
  color: white;
}

.control-icon {
  cursor: pointer;
  transition: 0.2s;
}

.control-icon:hover {
  color: #1DB954;
}

.song-info {
  margin-top: 15px;
}

.green {
  color: #1DB954;
}