@media (max-width: 767.98px) {

  /* Radyoyu ticker ile tamamen birleşik yapıyoruz */
  #mobil-audio-player-section {
    background-color: #000;
    margin: 0;
    padding: 8px 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* Ana yapı */
  .custom-audio-player-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 0 12px;
    gap: 10px;
    font-family: 'Inter', sans-serif;
  }

  /* Play / Pause butonu */
.play-pause-mobile {
  background: linear-gradient(135deg, #ff9900, #ffcc00);
  border: none;
  color: #111;
  width: 60px;
  height: 45px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

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

.volume-control-mobile input[type="range"] {
  accent-color: #ffcc00;
}


  /* Şarkı ismi */
  .track-info-mobile {
    flex: 1;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }

  #trackTitleMobile {
    display: inline-block;
    animation: scrollTrackTitle 10s linear infinite;
    color: #ffcc00;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-shadow: 0 0 6px rgba(255,204,0,0.7);
  }

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

  /* Ses kontrol */
  .volume-control-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00ffcc;
    font-size: 1rem;
  }

  #volumeSliderMobile {
    width: 80px;
    accent-color: #00ffcc;
    cursor: pointer;
  }

  /* Player ve ticker birleşsin diye arada boşluk bırakma */
  #mobil-audio-player-section + #mobil-ticker-section {
    margin-top: 0;
    padding-top: 0;
  }

  /* Ticker düzeni sabit kalıyor ama birleşmiş görünüm için üst boşluğu sıfırla */
  #mobil-ticker-section {
    background-color: #000;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

/* Masaüstünde gizle */
@media (min-width: 768px) {
  #mobil-audio-player-section {
    display: none;
  }
}
