body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.player {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
  width: 300px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cover img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.controls button {
  font-size: 20px;
  margin: 10px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  background: #ff69b4;
  color: white;
  cursor: pointer;
}

.controls button:hover {
  background: #ff4081;
}

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

#lyrics {
  margin-top: 15px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #673ab7;
  color: white;
  cursor: pointer;
}

#lyrics-box {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-align: left;
  max-height: 150px;
  overflow-y: auto;
}
