/* === STATUT LIVE === */
.live-status {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 0.8rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.live-dot {
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.live-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.live-viewers {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-left: auto;
}

.live-game {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.live-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    50% { box-shadow: 0 0 0 1rem rgba(255, 68, 68, 0); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 768px) {
    .live-status {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .live-text {
        font-size: 1rem;
    }
    
    .live-viewers {
        font-size: 0.9rem;
    }
    
    .live-game {
        font-size: 0.9rem;
    }
    
    .live-title {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
}
