/* Audio Player Styles - Subtle and Star-like */
#audio-player-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background-color: rgba(27, 39, 53, 0.1);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;

  &:hover {
    background-color: rgba(27, 39, 53, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }
}

#play-pause-btn {
  background-color: transparent;
  border: none;
  color: #fff; /* Using a star-like color */
  cursor: pointer;
  font-size: 18px;
  width: 25px;
  height: 25px;
  text-shadow: 0 0 5px rgba(135, 206, 235, 0.6); /* Star-blue glow */
  transition: all 0.3s ease;

  &:hover {
    color: rgba(255, 223, 186, 0.6); /* Star-gold on hover */
    text-shadow: 0 0 8px rgba(255, 223, 186, 0.6);
  }
}

#play-pause-btn.play::before {
  content: '▷';
}

#play-pause-btn.pause::before {
  content: '❚❚';
}

#volume-control {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

#volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  transition: all 0.3s ease;

  &::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 100, 100, 0.6); /* Star-red for thumb */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 100, 100, 0.6);
  }

  &::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: rgba(255, 100, 100, 0.6); /* Star-red for thumb */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 100, 100, 0.6);
  }
}
