.station-description {
    color: #fff;
    opacity: 0.6;
}
.station-img {
    border: 3px solid #ffffff00;
    padding: 0.15rem;
}
.player-artwork {
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: #ffffff00;
}
.player-artwork img {
    border-radius: 0.65rem;
    box-shadow: var(--shadow-xl);
}
.player-cover-image {
    animation: bga 60s linear infinite;
}
@keyframes bga {
    50% {
        transform: scale(2);
    }
}
.items-start {
    align-items: flex-start;
    margin-top: 15px;
}
.program-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
}

.program-cover {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 8px;
}

.program-name {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 4px;
}

.program-description {
  font-size: 0.9em;
  color: #ddd;
  margin-bottom: 6px;
}

.program-time {
  font-size: 0.8em;
  color: #aaa;
}


