/* Animowany player radio */

.footer_play {
    font-size: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: radioPulse 1.8s infinite ease-in-out;
    transform-origin: center;
}

/* delikatne pulsowanie */
@keyframes radioPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 0 rgba(255,255,255,0));
    }

    25% {
        transform: scale(1.08);
        opacity: 0.95;
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.35));
    }

    75% {
        transform: scale(1.08);
        opacity: 0.95;
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
    }

    100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 0 rgba(255,255,255,0));
    }
}

/* dodatkowy efekt hover */
.footer_item:hover .footer_play {
    animation-duration: 1s;
}

/* Czytelniejszy opis pod nickiem na liscie online */
.user_item .list_mood {
    color: rgba(255,255,255,0.82) !important;
}

.user_item.aa_ulbg_set .list_mood {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 8px rgba(0,0,0,0.7);
}
