.badge {
    font-size: 0.75rem;
    background-color: #f74605;
    padding: 0.125rem 0.5rem;
    display: inline-block;
    border-radius: 0.25rem;
}
.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-artwork video {
    width: 600px;  /* Largura do quadrado */
    height: 600px; /* Altura do quadrado */
    object-fit: cover; /* Faz o vídeo cobrir toda a área, cortando as laterais se necessário */
}
.player-cover-image {
    animation: bga 60s linear infinite;
}
@keyframes bga {
    50% {
        transform: scale(2);
    }
}
.items-start {
    align-items: flex-start;
    margin-top: 15px;
}




