@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(135deg, #1db954, #191414);
}

.container {
  width: 350px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.music-player nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.music-player nav .logo {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.circle {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.circle:hover {
  background: rgba(255,255,255,0.2);
}

.song-info {
  text-align: center;
  margin: 25px 0;
}

.song-img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.song-info h1 {
  font-size: 1.4rem;
  color: #fff;
}

.song-info p {
  color: #bbb;
  font-size: 0.9rem;
}

.progress-container {
  margin: 20px 0;
}

#progress {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 5px;
  background: #555;
  cursor: pointer;
}

#progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #1db954;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
}

.time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #ccc;
  margin-top: 5px;
}

.controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 25px;
}

.btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn:hover {
  background: rgba(255,255,255,0.2);
}

.play-btn {
  width: 65px;
  height: 65px;
  font-size: 1.5rem;
  background: #1db954;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}
