body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                                      background: transparent;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.player {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  gap: 15px;
}

.play-pause-btn {
  background: yes;
           border-radius: 18px; 
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 0;
}

.play-pause-btn svg {
  width: 75%;
  height: 75%;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-control input[type="range"] {
  width: 100px;
  accent-color: #5bce60;
}

.volume-control #volumeIcon {
                                width: 30px;
                                height: 30px;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(1.2);
    opacity: 1;
  }
}

#volumePercentage {
  font-size: 14px;
}

#nowPlaying {
  margin: 15px 0;
  font-size: 16px;
  font-weight: bold;
}

.cover-art-container {
                              margin-top: 4px;
}

.cover-art-container img {
  width: 85%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.equalizer {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 30px;
  margin-bottom: 10px;
  gap: 4px;
}

.equalizer .bar {
                                    width: 4px;
  height: 10px;
                                    background: #f28743;
  animation: equalize 1s infinite ease-in-out;
}

.equalizer .bar:nth-child(1) { animation-delay: 0s; }
.equalizer .bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.3s; }

@keyframes equalize {
  0%, 100% { height: 10px; }
  50% { height: 30px; }
}

