body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, #1e1e1e, #121212);
  color: #fff;
}

.playlist-container {
  padding: 20px;
  max-width: 500px;
  margin: auto;
}

.cover-section {
  text-align: center;
  margin-bottom: 30px;
}

.cover-img {
  width: 200px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.playlist-title {
  font-size: 26px;
  margin: 0;
}

.playlist-sub {
  color: #aaa;
  font-size: 14px;
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.song-btn {
  display: flex;
  align-items: center;
  background: #181818;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.song-btn:hover {
  background: #282828;
}

.song-cover {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 5px;
}

.song-title {
  font-weight: bold;
  margin: 0;
}
.playlist-title {
  text-align: center;
  margin-bottom: 10px;
}

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

.playlist-info p {
  color: #aaa;
  font-size: 14px;
  margin: 2px 0;
}

.song-artist {
  color: #aaa;
  font-size: 13px;
  margin: 0;
}