.live-title {
    font-weight: 900;
    font-size: 24px;
    color: #22c55e;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.5px;

    /* по-чист glow */
    text-shadow:
        0 0 4px rgba(34,197,94,0.5),
        0 0 12px rgba(34,197,94,0.4),
        0 0 24px rgba(34,197,94,0.25);

    animation: pulseGlow 2s ease-in-out infinite;
}

/* по-гладка анимация */
@keyframes pulseGlow {
    0% {
        text-shadow:
            0 0 4px rgba(34,197,94,0.4),
            0 0 10px rgba(34,197,94,0.3);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 10px rgba(34,197,94,0.8),
            0 0 30px rgba(34,197,94,0.4);
        transform: scale(1.02);
    }

    100% {
        text-shadow:
            0 0 4px rgba(34,197,94,0.4),
            0 0 10px rgba(34,197,94,0.3);
        transform: scale(1);
    }
}