/* Custom Audio Player Styles */
.custom-player {
  background: linear-gradient(135deg, rgba(0, 45, 98, 0.9) 0%, rgba(206, 17, 38, 0.9) 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.custom-player::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.player-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.player-vinyl {
  width: 280px;
  height: 280px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #1a1a2e 0%, #000 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 4px solid #ce1126;
  transition: transform 0.3s ease;
  background-image: url('../mund2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.player-vinyl.playing {
  animation: spin 3s linear infinite;
}

.player-vinyl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.player-vinyl::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.play-button {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: #ce1126;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(206, 17, 38, 0.6);
  position: relative;
  z-index: 10;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(206, 17, 38, 0.8);
}

.play-button:active {
  transform: scale(0.95);
}

.play-button i {
  color: white;
  font-size: 2rem;
  margin-left: 3px;
}

.play-button.playing i {
  margin-left: 0;
}

.volume-control {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.volume-slider {
  width: 150px;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.player-status {
  margin-top: 15px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.live-badge {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  animation: pulse-badge 2s infinite;
  margin-top: 10px;
}

@keyframes pulse-badge {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .custom-player {
    padding: 20px;
  }

  .player-vinyl {
    width: 100px;
    height: 100px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 1.5rem;
  }
}