body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #8bc34a, #4caf50);
  font-family: "Segoe UI", sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
}

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

.cover img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h2 {
  margin: 15px 0;
  font-size: 20px;
  color: #2e7d32;
}

.controls {
  display: flex;
  justify-content: space-around;
  margin: 15px 0;
}

.controls button {
  background: #4caf50;
  border: none;
  color: white;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.controls button:hover {
  background: #66bb6a;
}

.progress-container {
  background: #eee;
  height: 8px;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.progress {
  background: #8bc34a;
  height: 100%;
  width: 0%;
  border-radius: 10px;
}
