.player-button-alt.player-button-stations {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-top: -0.5rem;
}

.player-button-alt.player-button-stations .player-button-alt-text {
  background: none;
}
/* Aregue todo su codigo personalizado aquí */


.player-cover-image {
  animation: bga 60s linear infinite;
}

@keyframes bga {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}

.song-title-container {
  position: relative;
  overflow: hidden;
  max-width: 18rem;
}

.song-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(22rem, calc(100vw - 8rem));
}

.player-cover-title {
  margin-left: 1.5rem;
  margin-top: 0;
}

.player-left {
  align-items: flex-start;
  gap: 1.25rem;
}

.player-left-social {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
  justify-content: flex-end;
}

.player-social {
  gap: 0.65rem;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
}

.player-right {
  margin-top: 1.5rem;
}

.song-title.is-scrolling {
  display: inline-block;
  white-space: nowrap;
  animation: song-marquee var(--text-scroll-duration, 15s) linear infinite;
}

@keyframes song-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(calc(-100% - var(--text-scroll, 0px)));
  }
}
