/**
 * Live Winner Notifications CSS
 * Estilos para notificações de ganhos fake - mesmo visual do withdraw-notification
 */

#withdraw-notifications-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10000;
    pointer-events: none;
}

.live-winner-notification {
    position: relative;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    max-width: 278px;
    min-width: 166px;
    animation: slideInLeft 0.4s ease-out;
    opacity: 1;
    transform: translateX(0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-family: 'Inter', '-apple-system', 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: auto;
}

.live-winner-notification.hide {
    animation: slideOutLeft 0.4s ease-in forwards;
}

.live-winner-notification-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 600;
    white-space: nowrap;
}

.live-winner-notification-icon {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.live-winner-notification-content {
    font-size: 0.75rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.live-winner-notification-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.75rem;
    white-space: nowrap;
}

.live-winner-notification-amount {
    font-weight: 700;
    color: #fde047;
    font-size: 0.8rem;
    margin-top: 0;
    display: inline;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-300px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .live-winner-notification {
        max-width: 240px;
        min-width: 220px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .live-winner-notification-header {
        font-size: 0.65rem;
    }
    
    .live-winner-notification-content {
        font-size: 0.7rem;
    }
    
    .live-winner-notification-name {
        font-size: 0.7rem;
    }
    
    .live-winner-notification-amount {
        font-size: 0.75rem;
    }
}
