body {
  background: linear-gradient(135deg, #141e30, #243b55);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

.player {
  width: 350px;
  background: #1f1f1f;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  text-align: center;
}

.song-info h3 {
  margin: 10px 0 5px;
}

.song-info p {
  color: #ccc;
}

.controls button {
  background: #ff4b5c;
  border: none;
  color: white;
  font-size: 20px;
  margin: 10px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.controls button:hover {
  background: #ff1e38;
  transform: scale(1.1);
}

#progress {
  width: 100%;
  margin-top: 15px;
}

.time {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.volume {
  margin-top: 15px;
}

.volume input {
  width: 80%;
}

.playlist {
  margin-top: 20px;
  text-align: left;
}

.playlist ul {
  list-style: none;
  padding: 0;
}

.playlist li {
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #444;
  transition: 0.3s;
}

.playlist li:hover {
  background: #333;
}