.audio-player-section {
  width: 100%;
  background: #000;
  color: #fff;
  border-top: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.custom-audio-player {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  justify-content: space-between;
  padding: 6px 16px;
  font-family: 'Share Tech Mono', monospace;
}

/* 🎧 Oynatma Butonu (masaüstü) */
.play-pause {
  background: linear-gradient(135deg, #ff9900, #ffcc00);
  border: none;
  color: #111;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.play-pause:hover,
.play-pause:active {
  background: linear-gradient(135deg, #ffb300, #ffe066);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
  transform: scale(1.05);
}

/* 🟡 Parlayan yazı */
.track-info {
  flex: 1;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

#trackTitle {
  display: inline-block;
  animation: scrollText 12s linear infinite;
  color: #ffcc00;
  text-shadow: 0 0 6px #ffcc00;
  font-size: 1rem;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* 🔊 Ses Kontrolü */
.volume-control {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffcc00;
}

#volumeSlider {
  width: 100px;
  accent-color: #ffcc00;
}

/* 📱 Mobil için saklama */
@media (max-width: 1024px) {
  .audio-player-section {
    display: none !important;
  }
}
