body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #000000;
}

.player-wrap {
  display: flex;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.player {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border: 2px solid #ebebeb;
  border-radius: 18px;
  padding: 20px;
  box-sizing: border-box;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

/* PLAY BUTTON */

.play-btn {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  background: #682651;
}

/* BEFORE / AFTER BUTTONS */

.toggle-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.toggle-btn {
  border: 1px solid #aaaaaa;
  background: #ffffff;
  color: #000000;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
}

.toggle-btn:hover {
  border-color: #682651;
  color: #682651;
}

.toggle-btn.active {
  background: #682651;
  color: #ffffff;
  border-color: #682651;
}

/* PROGRESS BAR */

.progress-wrap {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 12px;
  align-items: center;
}

#currentTime,
#duration {
  color: #aaaaaa;
  font-size: 14px;
}

#seekBar {
  width: 100%;
  cursor: pointer;
  accent-color: #682651;
}
