/* ===== LIVE WIDGET ===== */
.live-widget {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    z-index: 10;
    animation: livePulse 2s ease-in-out infinite;
}

.live-indicator {
    font-size: 0.7rem;
    animation: liveBlink 1s ease-in-out infinite;
}

.live-text {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
    }
}

@keyframes liveBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}
