/* ============================================================
   LIVE-POPUP.CSS - Popup "Live en cours" (placeholder stylé)
   ============================================================ */

.live-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: rgba(19, 19, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--c-primary-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 24px var(--c-primary-glow);
    color: var(--c-text);
    font-size: 13px;
    font-weight: 600;
    max-width: 320px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.live-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.live-popup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 0 var(--c-primary-glow);
    animation: livePopupPulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes livePopupPulse {
    0%   { box-shadow: 0 0 0 0 var(--c-primary-glow); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}
.live-popup-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
    min-width: 0;
}
.live-popup-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.live-popup-title {
    font-size: 13px;
    color: var(--c-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-popup-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.live-popup-close:hover {
    background: var(--c-surface2);
    color: var(--c-text);
}

@media (max-width: 600px) {
    .live-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
