.sticky-player {
    position: fixed;
    bottom: 0;           /* Ключевое изменение: вместо top: 0 используем bottom: 0 */
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to right, #003366, #660099); /* Градиент от тёмно-синего к фиолетовому */
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3); /* Скорректировали тень, чтобы она смотрелась логично снизу */
}


.player-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ff7f50, #ff5733);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    border: none;
}

.play-button:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 40px;
    height: 40px;
    fill: white;
    position: relative;
    top: 20px;
    left: 20px;
}

.track-info {
    margin-left: 20px;
    color: white;
    font-family: Arial, sans-serif;
}

.track-title {
    font-size: 14px;
    font-weight: bold;
}

.track-artist {
    font-size: 12px;
}

.track-cover {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}
#playButton {
  width: 100px; /* Размер кнопки (можно изменить) */
  height: 100px;
  border-radius: 50%; /* Делает кнопку круглой */
  background: linear-gradient(45deg, #ff9500, #ff7e00); /* Оранжевый градиент */
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3); /* Тень для объёма */
}

/* Стили для иконки "Play" */
#playButton::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent white white;
  pointer-events: none; /* Чтобы клики проходили сквозь иконку */
}
