/* ========================================
   NOTIFICATIONS DE NOUVEAUX LIVES
   ======================================== */

.live-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 100000;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 45, 0.98));
    border: 2px solid #FF6FB1;
    border-radius: 12px;
    padding: 1rem;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(255, 111, 177, 0.4);
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    transform: translateX(450px);
    transition: all 0.3s ease;
}

.live-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.live-notification:hover {
    transform: translateX(0) translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 111, 177, 0.6);
    border-color: #A56BFF;
}

.live-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.live-notification-icon {
    font-size: 2rem;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.live-notification-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.live-notification-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.live-notification-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    display: -webkit-box;
    /*-webkit-line-clamp: 2;*/
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-notification-game {
    font-size: 0.85rem;
    color: #A56BFF;
    font-weight: 600;
    margin-top: 0.25rem;
}

.live-notification-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 111, 177, 0.9);
    border: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.live-notification-close:hover {
    background: #A56BFF;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .live-notification {
        top: 70px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .live-notification.show {
        transform: translateY(0);
    }
    
    .live-notification {
        transform: translateY(-100px);
    }
}
