#sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px; /* фиксированная высота */
  z-index: 9999;
  background: var(--theme-background, #fff);
  padding: 0.5em 1em;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
  color: inherit;
}

#sticky-player.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

body.is-playing {
  padding-bottom: 50px; /* высота плеера */
}

/* Кнопка закрытия слева по центру */
#close-player {
  position: absolute;
  right: 15px;
  top: 45%;
  transform: translateY(-50%);
  background: transparent;
  color: inherit;
  border: none;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
  z-index: 10000;
}

#close-player:hover {
  opacity: 1;
}

/* Адаптация Plyr контролов */
.plyr {
  flex: 1;
  max-width: calc(100% - 60px); /* учитывая кнопку закрытия */
}

/* Тёмная тема */
#sticky-player.dark-theme {
  background: var(--i-background_2);
  color: #eee;
}

#sticky-player.dark-theme .plyr__controls {
  color: #eee;
}

/* Мобильная версия */
@media screen and (max-width: 600px) {
  #sticky-player {
    padding: 0.5em;
    height: 60px;
  }
  body.is-playing {
    padding-bottom: 60px;
  }
  #close-player {
    font-size: 40px;
    right: 15px;
  }
  .plyr {
    max-width: calc(100% - 50px);
  }
  .plyr__controls {
    flex-wrap: wrap;
  }
}

:root {
  --plyr-color-main: var(--i-primary-button--ba-co); /* основной цвет: трек, кнопки */
}

/* Тёмная тема */
#sticky-player.dark-theme {
  --plyr-color-main: #fff;
}


#audio-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(100% - 20px); /* с учётом кнопки закрытия */
}

#audio-title {

  font-weight: 300;
  margin-bottom: -20px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}

/* Тёмная тема */
#sticky-player.dark-theme #audio-title {
  color: #eee;
}

/* Мобильная адаптация */
@media screen and (max-width: 600px) {
  #audio-title {
    font-size: 0.8em;
  }
}

a.time-jump {
  color: #0073e6;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}
a.time-jump:hover {
  color: #005bb5;
}
