/* Glass Player Wrapper and Effects */
.glass-player {
  background: rgba(40, 0, 60, 0.35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 0, 255, 0.25);
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.4);
  border-radius: 16px;
  padding: 15px;
}

/* Glow Buttons */
.glow-btn {
  background: rgba(80, 0, 120, 0.45);
  border: 1px solid rgba(180, 0, 255, 0.5);
  padding: 8px 14px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.glow-btn:hover {
  box-shadow: 0 0 15px #b300ff;
  transform: scale(1.08);
}

/* Visualizer Bars */
.visualizer-cover {
  position: relative;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.bars {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.bar {
  width: 4px;
  height: 10px;
  background: #d400ff;
  animation: bounce 0.6s infinite ease-in-out alternate;
  border-radius: 2px;
  box-shadow: 0 0 6px #d400ff;
}

.bar:nth-child(2) {
  animation-delay: .1s;
}

.bar:nth-child(3) {
  animation-delay: .2s;
}

.bar:nth-child(4) {
  animation-delay: .3s;
}

.bar:nth-child(5) {
  animation-delay: .4s;
}

@keyframes bounce {
  from {
    height: 10px;
    opacity: .7;
  }
  to {
    height: 28px;
    opacity: 1;
  }
}
