
body {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.player {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: white;
}

.cover {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.rotate {
  animation: rotate 15s linear infinite;
}

/* @keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */

#title {
  font-size: 20px;
  margin: 10px 0 5px;
}

#artist {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px;
}

.controls button {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  margin: 0 10px;
  cursor: pointer;
}

.progress-container {
  background: #fff;
  height: 6px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
}

.progress {
  background: #1db954;
  height: 100%;
  width: 0%;
  border-radius: 5px;
}

.volume-container {
  margin-top: 10px;
}
