/* ========== STYLES (avec ajouts pour la suppression et le message rouge) ========== */
#lookaa-featured{
    margin:2px;
    font-family:Arial,sans-serif;
    position:relative;
}
#lookaa-featured .lf-header{
    display:flex;
    align-items:center;
    margin-bottom:12px;
}
#lookaa-featured .lf-title{
    font-size:27px;
    font-weight:700;
    color:#fff;
    border-left:4px solid #ff0000;
    padding-left:10px;
}
#lookaa-featured .lf-carousel{
    display:flex;
    overflow-x:auto;
    gap:12px;
    scroll-behavior:smooth;
    scrollbar-width:none;
}
#lookaa-featured .lf-carousel::-webkit-scrollbar{
    display:none;
}
#lookaa-featured .lf-card{
    position:relative;
    min-width:250px;
    height:145px;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    cursor:pointer;
}
#lookaa-featured .lf-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}
#lookaa-featured .lf-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 35%, rgba(0,0,0,0) 75%);
}
#lookaa-featured .lf-status{
    position:absolute;
    top:5px;
    left:5px;
    padding:3px 5px;
    border-radius:6px;
    font-size:12px;
    font-weight:bold;
    backdrop-filter:blur(8px);
    color:#fff;
}
#lookaa-featured .lf-status.live{
    background:#e60023;
}
#lookaa-featured .lf-status.upcoming{
    background:#ff0000;
    color:#fff;
}
#lookaa-featured .lf-status.finished{
    background:rgba(80,80,80,.9);
}
#lookaa-featured .lf-info{
    position:absolute;
    bottom:12px;
    left:12px;
    right:12px;
    color:white;
    text-shadow:0 3px 12px rgba(0,0,0,.8);
}
#lookaa-featured .lf-info h3{
    margin:0;
    font-size:17px;
}
#lookaa-featured .lf-info p{
    margin-top:3px;
    font-size:13px;
    opacity:.9;
}

/* POPUP CONTEXTUEL (fond noir) */
.live-context-popup {
    position: absolute;
    background: #000000;
    background: rgba(0,0,0,0.95);
    border-radius: 16px;
    padding: 8px;
    min-width: 130px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10000;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: fadeInUp 0.15s ease;
}
.live-context-popup a {
    display: block;
    background: #e50914;
    color: white;
    text-align: center;
    padding: 8px 10px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: 0.15s;
    white-space: nowrap;
}
.live-context-popup a:hover {
    background: #b20710;
    transform: scale(1.02);
}
.live-context-popup::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000000;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MESSAGE TEMPORAIRE (par défaut : blanc sur noir) */
.info-message {
    position: absolute;
    background: #ff0000;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 7px;
    white-space: nowrap;
    z-index: 10001;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
    animation: fadeOut 2s ease forwards;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
/* Version "avertissement" pour ACCÈS DISPONIBLE (texte rouge) */
.info-message.warning {
    color: #fff;
}
@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); visibility: hidden; }
}

@media(max-width:600px){
    #lookaa-featured .lf-card{
        min-width:220px;
        height:130px;
    }
    .live-context-popup a {
        padding: 6px 8px;
        font-size: 12px;
    }
}